Skip to content

Commit 865676d

Browse files
committed
ci(circle): use node 18 for compatibility with angular/schematics
1 parent 01d634f commit 865676d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.circleci/config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ version: 2
33
aliases:
44
- &restore-cache
55
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" }}
99
- &install-deps
1010
run:
11-
name: Install dependencies
12-
command: yarn
11+
name: Install dependencies
12+
command: yarn
1313
- &build-packages
1414
run:
15-
name: Build
16-
command: npm run build
15+
name: Build
16+
command: npm run build
1717

1818
jobs:
1919
build:
2020
working_directory: ~/nest
2121
docker:
22-
- image: cimg/node:17.9
22+
- image: cimg/node:18.10
2323
steps:
2424
- checkout
2525
- restore_cache:
@@ -36,12 +36,12 @@ jobs:
3636
- ~/.cache/yarn
3737
- run:
3838
name: Build
39-
command: npm run build
40-
39+
command: npm run build
40+
4141
unit_tests:
4242
working_directory: ~/nest
4343
docker:
44-
- image: cimg/node:17.9
44+
- image: cimg/node:18.10
4545
steps:
4646
- checkout
4747
- restore_cache:
@@ -58,7 +58,7 @@ jobs:
5858
- ~/.cache/yarn
5959
- run:
6060
name: Tests
61-
command: npm run test
61+
command: npm run test
6262

6363
workflows:
6464
version: 2
@@ -67,4 +67,4 @@ workflows:
6767
- build
6868
- unit_tests:
6969
requires:
70-
- build
70+
- build

0 commit comments

Comments
 (0)