File tree Expand file tree Collapse file tree 1 file changed +16
-15
lines changed Expand file tree Collapse file tree 1 file changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -3,27 +3,28 @@ name: CI Build
3
3
on :
4
4
push :
5
5
branches :
6
- - ' *'
7
- - ' !main'
6
+ - ' *'
7
+ - ' !main'
8
8
paths-ignore :
9
- - README.md
10
- - CHANGELOG.md
9
+ - README.md
10
+ - CHANGELOG.md
11
11
12
12
jobs :
13
13
build :
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - name : Checkout repository
18
+ uses : actions/checkout@v3
18
19
19
- - name : Set up Node.js
20
- uses : actions/setup-node@v1
21
- with :
22
- node-version : 16
20
+ - name : Set up Node.js
21
+ uses : actions/setup-node@v3
22
+ with :
23
+ node-version : 16
23
24
24
- - name : Install dependencies
25
- run : npm ci
26
- - name : Test with Jest
27
- run : npm run test
28
- - name : Build with npm
29
- run : npm run build
25
+ - name : Install dependencies
26
+ run : npm ci
27
+ - name : Test with Jest
28
+ run : npm run test
29
+ - name : Build with npm
30
+ run : npm run build
You can’t perform that action at this time.
0 commit comments