Skip to content

build(deps-dev): bump eslint from 8.57.0 to 9.9.0 #3883

build(deps-dev): bump eslint from 8.57.0 to 9.9.0

build(deps-dev): bump eslint from 8.57.0 to 9.9.0 #3883

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
env:
FORCE_COLOR: 2
NODE_COV: lts/* # The Node.js version to run coveralls on
permissions:
contents: read
jobs:
run:
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:
- 18
- 20
- 22
- lts/*
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4.0.3
with:
node-version: '${{ matrix.node }}'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm run test:vi
if: matrix.node != env.NODE_COV
- name: Run tests with coverage
run: npm run test:vi -- --coverage
if: matrix.node == env.NODE_COV
- name: Run Coveralls
uses: coverallsapp/github-action@v2.3.0
if: matrix.node == env.NODE_COV
continue-on-error: true
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'