File tree Expand file tree Collapse file tree 1 file changed +17
-8
lines changed Expand file tree Collapse file tree 1 file changed +17
-8
lines changed Original file line number Diff line number Diff line change 31
31
strategy :
32
32
matrix :
33
33
node : [18, 20, 21, 'lts/*']
34
- eslint : [9]
35
- include :
36
- # On old ESLint version
37
- - node : 18
38
- eslint : 8
39
-
40
34
runs-on : ubuntu-latest
41
35
steps :
42
36
- name : Checkout
47
41
node-version : ${{ matrix.node }}
48
42
- name : Install Packages
49
43
run : npm install
50
- - name : Install ESLint v${{ matrix.eslint }}
51
- run : npm install --save-dev eslint@${{ matrix.eslint }} -f
44
+ - name : Test
45
+ run : npm test
46
+
47
+ test-with-eslint-v8 :
48
+ name : Test with ESLint v8
49
+ runs-on : ubuntu-latest
50
+ steps :
51
+ - name : Checkout
52
+ uses : actions/checkout@v4
53
+ - name : Install Node.js v18
54
+ uses : actions/setup-node@v4
55
+ with :
56
+ node-version : 18
57
+ - name : Install Packages
58
+ run : npm install
59
+ - name : Install ESLint v8
60
+ run : npm install --save-dev eslint@8 -f
52
61
- name : Test
53
62
run : npm test
54
63
You can’t perform that action at this time.
0 commit comments