File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -3,23 +3,23 @@ version: 2
3
3
aliases :
4
4
- &restore-cache
5
5
restore_cache :
6
- name : Restore Yarn Package Cache
7
- keys :
8
- - yarn-packages-{{ checksum "yarn.lock" }}
6
+ name : Restore Yarn Package Cache
7
+ keys :
8
+ - yarn-packages-{{ checksum "yarn.lock" }}
9
9
- &install-deps
10
10
run :
11
- name : Install dependencies
12
- command : yarn
11
+ name : Install dependencies
12
+ command : yarn
13
13
- &build-packages
14
14
run :
15
- name : Build
16
- command : npm run build
15
+ name : Build
16
+ command : npm run build
17
17
18
18
jobs :
19
19
build :
20
20
working_directory : ~/nest
21
21
docker :
22
- - image : cimg/node:17.9
22
+ - image : cimg/node:18.10
23
23
steps :
24
24
- checkout
25
25
- restore_cache :
@@ -36,12 +36,12 @@ jobs:
36
36
- ~/.cache/yarn
37
37
- run :
38
38
name : Build
39
- command : npm run build
40
-
39
+ command : npm run build
40
+
41
41
unit_tests :
42
42
working_directory : ~/nest
43
43
docker :
44
- - image : cimg/node:17.9
44
+ - image : cimg/node:18.10
45
45
steps :
46
46
- checkout
47
47
- restore_cache :
58
58
- ~/.cache/yarn
59
59
- run :
60
60
name : Tests
61
- command : npm run test
61
+ command : npm run test
62
62
63
63
workflows :
64
64
version : 2
@@ -67,4 +67,4 @@ workflows:
67
67
- build
68
68
- unit_tests :
69
69
requires :
70
- - build
70
+ - build
You can’t perform that action at this time.
0 commit comments