Skip to content

build(deps-dev): bump eslint from 9.14.0 to 9.15.0 #867

build(deps-dev): bump eslint from 9.14.0 to 9.15.0

build(deps-dev): bump eslint from 9.14.0 to 9.15.0 #867

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@v4
- name: Install node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install project modules
run: npm ci
- name: Lint source files
run: npm run lint
- name: Run unit tests
run: npm test