Skip to content

Migrate to ESLint 9 #644

Migrate to ESLint 9

Migrate to ESLint 9 #644

Workflow file for this run

name: ci
on: pull_request
jobs:
build:
name: Build
strategy:
matrix:
node-version: [20]
runs-on: ubuntu-latest
steps:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
id: node
- name: Check out the code
uses: actions/checkout@v4.1.7
- name: Get dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Build
run: |
npm run build