Skip to content

chore(deps-dev): Bump @typescript-eslint/parser from 6.21.0 to 7.8.0 #1696

chore(deps-dev): Bump @typescript-eslint/parser from 6.21.0 to 7.8.0

chore(deps-dev): Bump @typescript-eslint/parser from 6.21.0 to 7.8.0 #1696

Workflow file for this run

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 # to fetch code (actions/checkout)
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- uses: actions/setup-node@v4.0.1
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run lint
test:
permissions:
contents: read # to fetch code (actions/checkout)
checks: write # to create new checks (coverallsapp/github-action)
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
- lts/*
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4.0.1
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/github-action@v2.2.3
if: matrix.node == env.NODE_COV
continue-on-error: true
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"