File tree Expand file tree Collapse file tree 2 files changed +12
-19
lines changed Expand file tree Collapse file tree 2 files changed +12
-19
lines changed Original file line number Diff line number Diff line change 6
6
- ' src/**'
7
7
- ' dist/**'
8
8
- tsconfig.json
9
- - package*
9
+ - package.json
10
+ - yarn.lock
10
11
11
12
env :
12
13
IMAGE_NAME : alpine:3.10.1
@@ -19,13 +20,10 @@ jobs:
19
20
- uses : actions/checkout@v1
20
21
21
22
- name : Install dependencies
22
- run : npm install
23
-
24
- # - name: Test
25
- # run: npm run test
23
+ run : yarn install
26
24
27
25
- name : Build
28
- run : npm run build
26
+ run : yarn run build
29
27
30
28
- name : Pull docker image
31
29
run : docker pull alpine:3.10.3
@@ -53,13 +51,10 @@ jobs:
53
51
- uses : actions/checkout@v1
54
52
55
53
- name : Install dependencies
56
- run : npm install
57
-
58
- # - name: Test
59
- # run: npm run test
54
+ run : yarn install
60
55
61
56
- name : Build
62
- run : npm run build
57
+ run : yarn run build
63
58
64
59
- name : Pull docker image
65
60
run : docker pull alpine:3.10.3
@@ -86,13 +81,10 @@ jobs:
86
81
- uses : actions/checkout@v1
87
82
88
83
- name : Install dependencies
89
- run : npm install
90
-
91
- # - name: Test
92
- # run: npm run test
84
+ run : yarn install
93
85
94
86
- name : Build
95
- run : npm run build
87
+ run : yarn run build
96
88
97
89
- name : Pull docker image
98
90
run : docker pull alpine:3.10.3
Original file line number Diff line number Diff line change 6
6
- ' src/**'
7
7
- ' dist/**'
8
8
- tsconfig.json
9
- - package*
9
+ - package.json
10
+ - yarn.lock
10
11
11
12
jobs :
12
13
jest :
20
21
node-version : ' 12.x'
21
22
22
23
- name : Install dependencies
23
- run : npm install
24
+ run : yarn install
24
25
25
26
- name : Jest
26
- run : npm run test
27
+ run : yarn run test
You can’t perform that action at this time.
0 commit comments