chore: bump up all devDependencies #76
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| env: | |
| ACTION_CACHE_PATH: | | |
| ~/.bun/install/cache | |
| node_modules/ | |
| permissions: | |
| contents: write | |
| id-token: write | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| publish: | |
| required: false | |
| type: boolean | |
| push: | |
| paths: | |
| - packages/** | |
| - bun.lock | |
| - "!crates/**" | |
| - "!packages/@oveo/optimizer/**" | |
| - "!tests/optimizer/**" | |
| branches: | |
| - master | |
| pull_request: | |
| paths: | |
| - packages/** | |
| - bun.lock | |
| - "!crates/**" | |
| - "!packages/@oveo/optimizer/**" | |
| - "!tests/optimizer/**" | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| publish: | |
| name: Publish | |
| if: ${{ github.event_name != 'pull_request' && (inputs.publish || startsWith(github.event.head_commit.message, 'publish:')) }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - uses: oven-sh/setup-bun@v2 | |
| - uses: extractions/setup-just@v3 | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ${{ env.ACTION_CACHE_PATH }} | |
| key: CI | |
| - run: just init | |
| - run: just tsc | |
| - name: Publish to NPM | |
| run: | | |
| npm config set provenance true | |
| echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc | |
| just publish --provenance --access public | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |