File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -10,28 +10,28 @@ jobs:
10
10
11
11
# Restore cache
12
12
- restore_cache :
13
- key : yarn-{{ checksum "yarn.lock" }}
13
+ key : yarn-{{ checksum "yarn.lock" }}
14
14
15
15
# Install dependencies
16
16
- run :
17
- name : Install Dependencies
18
- command : yarn
17
+ name : Install Dependencies
18
+ command : yarn
19
19
20
20
# Keep cache
21
21
- save_cache :
22
- key : yarn-{{ checksum "yarn.lock" }}
23
- paths :
24
- - " node_modules"
22
+ key : yarn-{{ checksum "yarn.lock" }}
23
+ paths :
24
+ - " node_modules"
25
25
26
26
# Build
27
27
- run :
28
- name : Build
29
- command : yarn build
28
+ name : Build
29
+ command : yarn build
30
30
31
31
# Test
32
32
- run :
33
- name : Tests
34
- command : yarn test
33
+ name : Tests
34
+ command : yarn test
35
35
36
36
# Deploy to NPM
37
37
- deploy :
You can’t perform that action at this time.
0 commit comments