[codex] fix(security): upgrade vite-plus toolchain #19
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: DeterminateSystems/nix-installer-action@v19 | |
| - name: Run checks | |
| run: | | |
| nix develop --command sh -lc ' | |
| pnpm install --frozen-lockfile | |
| pnpm run fmt -- --check | |
| pnpm run lint | |
| pnpm run check | |
| pnpm run test | |
| pnpm run build:node | |
| pnpm run build:wasm | |
| ' |