This repository was archived by the owner on Jan 13, 2026. It is now read-only.
Update dependency eslint-plugin-jest to v29 #5508
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: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18.20.8' | |
| check-latest: true | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm ci | |
| lint-typecheck-format: | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18.20.8' | |
| check-latest: true | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: install website dependencies | |
| working-directory: website | |
| run: npm ci | |
| - run: npm run lint | |
| - run: npm run typecheck | |
| - run: npm run prettier | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| strategy: | |
| matrix: | |
| node: ['18', '20'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run test:ci |