ci: run on node v16 only
This commit is contained in:
parent
da9d944e89
commit
320ba7e6ea
1 changed files with 3 additions and 6 deletions
9
.github/workflows/eslint.yml
vendored
9
.github/workflows/eslint.yml
vendored
|
@ -16,19 +16,16 @@ on:
|
||||||
- '!gh-pages'
|
- '!gh-pages'
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
strategy:
|
name: ESLint (Node v16)
|
||||||
matrix:
|
|
||||||
node: ['14', '16']
|
|
||||||
name: ESLint (Node v${{ matrix.node }})
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install Node v${{ matrix.node }}
|
- name: Install Node v16
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: 16
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
Loading…
Reference in a new issue