Skip to content

build(deps-dev): bump eslint from 9.39.2 to 10.0.0 #1239

build(deps-dev): bump eslint from 9.39.2 to 10.0.0

build(deps-dev): bump eslint from 9.39.2 to 10.0.0 #1239

Workflow file for this run

---
name: Pull request build
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Lint and test project
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Install node 22
uses: actions/setup-node@v6
with:
node-version: '22'
cache: npm
- name: Install project modules
run: npm ci
- name: Lint source files
run: npm run lint
- name: Run unit tests
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: false