File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,27 +3,28 @@ name: CI Build
33on :
44 push :
55 branches :
6- - ' *'
7- - ' !main'
6+ - ' *'
7+ - ' !main'
88 paths-ignore :
9- - README.md
10- - CHANGELOG.md
9+ - README.md
10+ - CHANGELOG.md
1111
1212jobs :
1313 build :
1414 runs-on : ubuntu-latest
1515
1616 steps :
17- - uses : actions/checkout@v2
17+ - name : Checkout repository
18+ uses : actions/checkout@v3
1819
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
2324
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