@@ -13,14 +13,14 @@ jobs:
13
13
name : Lint
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - name : Checkout
17
- uses : actions/checkout@v3
18
- - name : Install Node.js
19
- uses : actions/setup-node@v3
20
- - name : Install Packages
21
- run : npm install --legacy-peer-deps
22
- - name : Lint
23
- run : npm run lint
16
+ - name : Checkout
17
+ uses : actions/checkout@v3
18
+ - name : Install Node.js
19
+ uses : actions/setup-node@v3
20
+ - name : Install Packages
21
+ run : npm install --legacy-peer-deps
22
+ - name : Lint
23
+ run : npm run lint
24
24
25
25
test :
26
26
name : Test
@@ -41,49 +41,49 @@ jobs:
41
41
42
42
runs-on : ${{ matrix.os }}
43
43
steps :
44
- - name : Checkout
45
- uses : actions/checkout@v3
46
- - name : Install Node.js v${{ matrix.node }}
47
- uses : actions/setup-node@v3
48
- with :
49
- node-version : ${{ matrix.node }}
50
- - name : Install Packages
51
- run : npm install --legacy-peer-deps
52
- - name : Install ESLint v${{ matrix.eslint }}
53
- run : npm install --save-dev eslint@${{ matrix.eslint }} --legacy-peer-deps
54
- - name : Test
55
- run : npm test
44
+ - name : Checkout
45
+ uses : actions/checkout@v3
46
+ - name : Install Node.js v${{ matrix.node }}
47
+ uses : actions/setup-node@v3
48
+ with :
49
+ node-version : ${{ matrix.node }}
50
+ - name : Install Packages
51
+ run : npm install --legacy-peer-deps
52
+ - name : Install ESLint v${{ matrix.eslint }}
53
+ run : npm install --save-dev eslint@${{ matrix.eslint }} --legacy-peer-deps
54
+ - name : Test
55
+ run : npm test
56
56
57
57
test-for-ts-eslint-v5 :
58
58
name : Test
59
59
runs-on : ubuntu-latest
60
60
steps :
61
- - name : Checkout
62
- uses : actions/checkout@v3
63
- - name : Install Node.js
64
- uses : actions/setup-node@v3
65
- with :
66
- node-version : 18
67
- - name : Install Packages
68
- run : npm install --legacy-peer-deps
69
- - name : Install typescript-eslint v5
70
- run : npm install -D @typescript-eslint/parser
71
- - name : Test
72
- run : npm test
61
+ - name : Checkout
62
+ uses : actions/checkout@v3
63
+ - name : Install Node.js
64
+ uses : actions/setup-node@v3
65
+ with :
66
+ node-version : 18
67
+ - name : Install Packages
68
+ run : npm install --legacy-peer-deps
69
+ - name : Install typescript-eslint v5
70
+ run : npm install -D @typescript-eslint/parser
71
+ - name : Test
72
+ run : npm test
73
73
74
74
test-for-eslint-v8-without-eslint-stylistic :
75
75
name : Test
76
76
runs-on : ubuntu-latest
77
77
steps :
78
- - name : Checkout
79
- uses : actions/checkout@v3
80
- - name : Install Node.js
81
- uses : actions/setup-node@v3
82
- - name : Install Packages
83
- run : npm install --legacy-peer-deps
84
- - name : Uninstall @stylistic/eslint-plugin
85
- run : npm uninstall -D @stylistic/eslint-plugin
86
- - name : Install eslint v8
87
- run : npm install -D eslint@8
88
- - name : Test
89
- run : npm test
78
+ - name : Checkout
79
+ uses : actions/checkout@v3
80
+ - name : Install Node.js
81
+ uses : actions/setup-node@v3
82
+ - name : Install Packages
83
+ run : npm install --legacy-peer-deps
84
+ - name : Uninstall @stylistic/eslint-plugin
85
+ run : npm uninstall -D @stylistic/eslint-plugin
86
+ - name : Install eslint v8
87
+ run : npm install -D eslint@8
88
+ - name : Test
89
+ run : npm test
0 commit comments