Skip to content

chore(deps-dev): bump eslint from 8.56.0 to 8.57.0 #833

chore(deps-dev): bump eslint from 8.56.0 to 8.57.0

chore(deps-dev): bump eslint from 8.56.0 to 8.57.0 #833

Workflow file for this run

# This workflow will do a clean install of node dependencies and runs tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Test
run: npm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- name: Lint
run: |
npm run lint
git diff --exit-code