Test with jest 30 #1370
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: 'GitHub CI' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - next | |
| pull_request: | |
| branches: | |
| - main | |
| - next | |
| jobs: | |
| test-node: | |
| name: Test on Node.js v${{ matrix.node-version }} and jest v${{ matrix.jest-version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [18.x, 20.x, 22.x, 24.x] | |
| jest-version: [27, 28, 29, 30] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| - name: install | |
| run: yarn install --immutable | |
| - name: install with jest@${{ matrix.jest-version }} | |
| if: ${{ matrix.jest-version == 30 }} | |
| run: yarn add --dev jest@${{ matrix.jest-version }} ts-jest@29 @types/jest@${{ matrix.jest-version }} | |
| - name: install with jest@${{ matrix.jest-version }} | |
| if: ${{ matrix.jest-version != 30 }} | |
| run: yarn add --dev jest@${{ matrix.jest-version }} ts-jest@${{ matrix.jest-version }} @types/jest@${{ matrix.jest-version }} | |
| - run: yarn test:coverage | |
| - uses: codecov/codecov-action@v5 | |
| if: ${{ always() }} | |
| test-os: | |
| name: Test on ${{ matrix.os }} using Node.js LTS | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - if: runner.os == 'Windows' | |
| run: npm install --global --force corepack@latest | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: 'yarn' | |
| - run: yarn install --immutable | |
| - run: yarn test:coverage | |
| - uses: codecov/codecov-action@v5 | |
| if: ${{ always() }} | |
| lint: | |
| name: Run ESLint & TypeScript compiler | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: 'yarn' | |
| - run: yarn install --immutable | |
| - run: yarn build | |
| - run: yarn lint | |
| - run: yarn typecheck | |
| - run: | | |
| js_files=$(find src test -type f -name '*.js') | |
| if [ -n "$js_files" ]; then | |
| echo "::error::Found disallowed .js files. Please convert them to .ts:" | |
| echo "$js_files" | |
| exit 1 | |
| else | |
| echo "No disallowed .js files found in src/ or test/. Check passed." | |
| fi | |
| release: | |
| name: Run publish action | |
| if: ${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/main' || github.event.ref == 'refs/heads/next') }} | |
| needs: [lint, test-node, test-os] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v5 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: 'yarn' | |
| - name: install | |
| run: yarn install --immutable | |
| - name: Create Release Pull Request or Publish to npm | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| publish: yarn changeset publish | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |