Skip to content

feature(eslint): migrate to flat config (v1.0.0) #48

feature(eslint): migrate to flat config (v1.0.0)

feature(eslint): migrate to flat config (v1.0.0) #48

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 }}
- name: npm install and lint
run: |
npm ci
npm run lint
env:
CI: true