chore(deps): update all non-major dependencies #388
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: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| jobs: | ||
| ci: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/setup-node@v6 | ||
| with: | ||
| node-version-file: ".node-version" | ||
| - run: npm install --global corepack | ||
| - run: corepack enable | ||
| - run: pnpm --version | ||
| - uses: actions/setup-node@v6 | ||
| with: | ||
| node-version-file: ".node-version" | ||
| cache: "pnpm" | ||
| cache-dependency-path: "**/pnpm-lock.yaml" | ||
| - name: install | ||
| run: pnpm install --frozen-lockfile --prefer-offline | ||
| - name: format | ||
| run: pnpm format | ||
| - name: lint | ||
| run: pnpm run lint | ||
| - name: typecheck | ||
| run: pnpm run typecheck | ||
| - name: audit | ||
| if: (${{ success() }} || ${{ failure() }}) | ||
|
Check warning on line 36 in .github/workflows/ci.yml
|
||
| run: pnpm audit | ||
| - name: test | ||
| if: (${{ success() }} || ${{ failure() }}) | ||
|
Check warning on line 39 in .github/workflows/ci.yml
|
||
| run: pnpm test:self | ||
| env: | ||
| COREPACK_ENABLE_STRICT: 0 | ||