Skip to content

Updated libs: Bump eslint from 9.12.0 to 9.13.0 #671

Updated libs: Bump eslint from 9.12.0 to 9.13.0

Updated libs: Bump eslint from 9.12.0 to 9.13.0 #671

Workflow file for this run

name: Node checks
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.10.x]
steps:
- uses: actions/checkout@v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: CI command
run: npm ci
- name: Linting checks
run: npm run lint
- name: Unit Tests
run: npm run test:unit