We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9225766 commit fd2eb56Copy full SHA for fd2eb56
.github/workflows/CI.yml
@@ -16,6 +16,9 @@ on:
16
jobs:
17
lint:
18
name: ⬣ Lint
19
+ strategy:
20
+ matrix:
21
+ eslint: [6, 7]
22
runs-on: ubuntu-latest
23
steps:
24
- name: 🛑 Cancel Previous Runs
@@ -32,6 +35,9 @@ jobs:
32
35
- name: 📥 Install dependencies
33
36
run: npm install
34
37
38
+ - name: 📥 Install ESLint v${{ matrix.eslint }}
39
+ run: npm install --save-dev eslint@${{ matrix.eslint }}
40
+
41
- name: ▶️ Run lint script
42
run: npm run lint
43
0 commit comments