Skip to content

Update dependency eslint to v8.57.1 - autoclosed #274

Update dependency eslint to v8.57.1 - autoclosed

Update dependency eslint to v8.57.1 - autoclosed #274

Workflow file for this run

---
# This workflow will do a clean install of all dependencies, cache/restore
# them, build the source code and run tests across different versions fo node.
name: Test CI
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci --timing
- run: npm run check
- run: npm run check:formatting
- run: npm run build
- run: npm test
...