File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
name : CI
4
4
5
- # Controls when the action will run.
5
+ # Controls when the action will run.
6
6
on :
7
7
# Triggers the workflow on push or pull request events but only for the develop branch
8
8
push :
9
- branches : [ develop ]
9
+ branches : [develop]
10
10
pull_request :
11
- branches : [ develop ]
11
+ branches : [develop]
12
12
13
13
# Allows you to run this workflow manually from the Actions tab
14
14
workflow_dispatch :
@@ -35,18 +35,18 @@ jobs:
35
35
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
36
36
restore-keys : |
37
37
${{ runner.os }}-node-
38
-
38
+
39
39
- name : node ${{ matrix.node-version }}
40
40
uses : actions/setup-node@v1
41
41
with :
42
42
node-version : ${{ matrix.node-version }}
43
-
43
+
44
44
- name : run tests
45
45
run : |
46
- npm ci,
46
+ npm ci
47
47
npm run test:ci
48
-
48
+
49
49
- name : build project
50
50
run : |
51
- npm ci,
51
+ npm ci
52
52
npm run build:ci
You can’t perform that action at this time.
0 commit comments