chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.12.2 #1880
Workflow file for this run
This file contains 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: Node.js CI | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
env: | |
CI: true | |
FORCE_COLOR: 2 | |
NODE_COV: "lts/*" # The Node.js version to run coveralls on | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- run: npm ci | |
- run: npm run lint | |
test: | |
permissions: | |
checks: write # for coverallsapp/github-action to create new checks | |
contents: read # for actions/checkout to fetch code | |
name: Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
- "lts/*" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- run: npm ci | |
- run: npm run build --if-present | |
- name: Run Jest | |
run: npm run test:jest | |
if: matrix.node != env.NODE_COV | |
- name: Run Jest with coverage | |
run: npm run test:jest -- --coverage | |
if: matrix.node == env.NODE_COV | |
- name: Run Coveralls | |
uses: coverallsapp/[email protected] | |
if: matrix.node == env.NODE_COV | |
continue-on-error: true | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" |