@@ -13,14 +13,14 @@ jobs:
1313 name : Lint
1414 runs-on : ubuntu-latest
1515 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
2424
2525 test :
2626 name : Test
@@ -41,49 +41,49 @@ jobs:
4141
4242 runs-on : ${{ matrix.os }}
4343 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
5656
5757 test-for-ts-eslint-v5 :
5858 name : Test
5959 runs-on : ubuntu-latest
6060 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
7373
7474 test-for-eslint-v8-without-eslint-stylistic :
7575 name : Test
7676 runs-on : ubuntu-latest
7777 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