chore(deps): update dependency eslint to v9.38.0 #14637
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: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| - uses: pnpm/action-setup@v4.1.0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5.0.0 | |
| with: | |
| node-version: 22.20.0 | |
| check-latest: true | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm tsc --noEmit | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| - uses: pnpm/action-setup@v4.1.0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5.0.0 | |
| with: | |
| node-version: 22.20.0 | |
| check-latest: true | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm run lint | |
| test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| node: ["20"] | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| - uses: pnpm/action-setup@v4.1.0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5.0.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm run test:coverage | |
| - uses: codecov/codecov-action@v5.5.1 | |
| with: | |
| files: packages/**/coverage/cobertura-coverage.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| verbose: true | |
| test-types: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| node: ["20"] | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| - uses: pnpm/action-setup@v4.1.0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5.0.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm run test:types |