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 3131 strategy :
3232 matrix :
3333 node : [18, 20, 21, 'lts/*']
34- eslint : [9]
35- include :
36- # On old ESLint version
37- - node : 18
38- eslint : 8
39-
4034 runs-on : ubuntu-latest
4135 steps :
4236 - name : Checkout
4741 node-version : ${{ matrix.node }}
4842 - name : Install Packages
4943 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 --force
5261 - name : Test
5362 run : npm test
5463
You can’t perform that action at this time.
0 commit comments