Skip to content

Upgrade to & supoport ESlint v9 (fixes #234) #133

Upgrade to & supoport ESlint v9 (fixes #234)

Upgrade to & supoport ESlint v9 (fixes #234) #133

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
name: "Test: Node ${{ matrix.node-version }} - ESLint ${{ matrix.eslint-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
eslint-version: [9.x, 8.x]
node-version: [20.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Use ESLint ${{ matrix.eslint-version }}
run: yarn upgrade eslint@${{ matrix.eslint-version }}
- name: Install
run: yarn install
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test