Skip to content

Merge pull request #38 from 43081j/remove-deprecated-rules #48

Merge pull request #38 from 43081j/remove-deprecated-rules

Merge pull request #38 from 43081j/remove-deprecated-rules #48

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
name: ESLint ${{ matrix.eslint }} on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 20
- 23
eslint:
- 8
- local
steps:
- uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- name: Install ESLint ${{ matrix.eslint }}
if: ${{ matrix.eslint != 'local' }}
run: npm install eslint@${{ matrix.eslint }} --no-save
- run: npm run build --if-present
- run: npm test
env:
CI: true