[pull] main from eslint:main #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install Packages | |
run: npm install | |
env: | |
CI: true | |
- name: Lint | |
run: npm run lint | |
test: | |
name: Test | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
eslint: [8] | |
node: [21.x, 20.x, 18.x, "18.18.0"] | |
include: | |
- os: windows-latest | |
eslint: 8 | |
node: 20 | |
- os: macOS-latest | |
eslint: 8 | |
node: 20 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Packages | |
run: npm install | |
env: | |
CI: true | |
- name: Install ESLint@${{ matrix.eslint }} | |
run: npm install eslint@${{ matrix.eslint }} | |
- name: Test | |
run: npm run test |