Skip to content

Chore(deps-dev): bump eslint from 8.57.0 to 9.7.0 #451

Chore(deps-dev): bump eslint from 8.57.0 to 9.7.0

Chore(deps-dev): bump eslint from 8.57.0 to 9.7.0 #451

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: ['16', '18', '19']
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 install
- run: npm test
test-docs:
name: Run tests for docs
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install docs dependencies
run: npm install
working-directory: docs
- name: Test docs build
run: npm run build
working-directory: docs