chore(deps): lock file maintenance #3519
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: [master] | |
| paths: | |
| - .github/workflows/main.yml | |
| - packages/**/*.{js,ts,json} | |
| - '*.{json,js}' | |
| - .eslintrc | |
| - tools/**/* | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: | |
| - 20 # 2026-05-26 | |
| - 22 # 2026-12-07 | |
| - 24 # 2027-06-16 | |
| - latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.sha }} | |
| fetch-depth: 2 | |
| - uses: ./.github/actions/setup-deps | |
| - name: Get base sha | |
| id: base-commit | |
| run: | | |
| echo "sha=${{ github.event.pull_request.base.sha || github.event.before }}" >> $GITHUB_OUTPUT | |
| - name: Build | |
| run: | | |
| if [[ "${{ github.event_name }}" != "pull_request" || $(git diff --name-only HEAD^1 HEAD | grep casl-) = "" ]]; then | |
| pnpm run -r build | |
| else | |
| pnpm run -r --filter '[${{ steps.base-commit.outputs.sha }}]...' build | |
| fi | |
| - name: lint | |
| run: | | |
| if [[ "${{ github.event_name }}" != "pull_request" || $(git diff --name-only HEAD^1 HEAD | grep casl-) = "" ]]; then | |
| pnpm run -r lint | |
| else | |
| pnpm run -r --filter '[${{ steps.base-commit.outputs.sha }}]' lint | |
| fi | |
| - name: test | |
| run: | | |
| if [[ "${{ github.event_name }}" != "pull_request" || $(git diff --name-only HEAD^1 HEAD | grep casl-) = "" ]]; then | |
| pnpm run -r test --coverage | |
| else | |
| pnpm run -r --filter '...[${{ steps.base-commit.outputs.sha }}]' test --coverage | |
| fi | |
| - name: Submit coverage | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| verbose: true # optional (default = false) |