File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-latest
23
23
strategy :
24
24
matrix :
25
- node-version : [12.x, 13 .x, 14 .x]
25
+ node-version : [12.x, 14 .x, 16 .x]
26
26
steps :
27
27
- uses : actions/checkout@v2
28
28
- name : Use Node.js ${{ matrix.node-version }}
52
52
run : npm install
53
53
- name : Test
54
54
run : npm test
55
+ test-for-eslint-v7 :
56
+ runs-on : ubuntu-latest
57
+ strategy :
58
+ matrix :
59
+ node-version : [13.x, 14.x]
60
+ steps :
61
+ - uses : actions/checkout@v2
62
+ - name : Use Node.js ${{ matrix.node-version }}
63
+ uses : actions/setup-node@v2
64
+ with :
65
+ node-version : ${{ matrix.node-version }}
66
+ - name : Install eslint v7
67
+ run : |+
68
+ npm i -D eslint@7 --legacy-peer-deps
69
+ npx rimraf node_modules
70
+ - name : Install Packages
71
+ run : npm install
72
+ - name : Test
73
+ run : npm test
55
74
test-and-coverage :
56
75
runs-on : ubuntu-latest
57
76
steps :
Original file line number Diff line number Diff line change 13
13
"devDependencies" : {
14
14
"@sveltejs/adapter-static" : " ^1.0.0-next.13" ,
15
15
"@sveltejs/kit" : " ^1.0.0-next.138" ,
16
- "eslint" : " ^7.26 .0" ,
16
+ "eslint" : " ^8.0 .0" ,
17
17
"prettier" : " ^2.3.0" ,
18
18
"prettier-plugin-svelte" : " ^2.3.0" ,
19
19
"string-replace-loader" : " ^3.0.1" ,
Original file line number Diff line number Diff line change 54
54
"@typescript-eslint/eslint-plugin" : " ^5.0.0" ,
55
55
"@typescript-eslint/parser" : " ^5.0.0" ,
56
56
"code-red" : " ^0.2.0" ,
57
- "eslint" : " ^7.5 .0" ,
57
+ "eslint" : " ^8.0 .0" ,
58
58
"eslint-config-prettier" : " ^8.0.0" ,
59
59
"eslint-plugin-eslint-comments" : " ^3.2.0" ,
60
60
"eslint-plugin-json-schema-validator" : " ^1.0.0" ,
You can’t perform that action at this time.
0 commit comments