File tree Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 9
9
name : Run ESLint
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v1
13
- - uses : actions/setup-node@v1
12
+ - name : Checkout the repository
13
+ uses : actions/checkout@v2
14
+
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v1
14
17
with :
15
18
node-version : ' 14'
16
- - run : npm ci
17
- - run : npm run lint
19
+
20
+ - name : Install dependencies
21
+ run : npm ci
22
+
23
+ - name : Run ESLint
24
+ run : npm run lint
Original file line number Diff line number Diff line change 9
9
name : Run tests
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v1
13
- - uses : actions/setup-node@v1
12
+ - name : Checkout the repository
13
+ uses : actions/checkout@v2
14
+
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v1
14
17
with :
15
18
node-version : ' 14'
16
- - run : npm ci
17
- - run : npm test
19
+
20
+ - name : Install dependencies
21
+ run : npm ci
22
+
23
+ - name : Run tests
24
+ run : npm test
You can’t perform that action at this time.
0 commit comments