Skip to content

Commit d922114

Browse files
Merge pull request #1449 from nestjs/10.0.0
chore: laying the grounds for 10.0.0
2 parents 96efd13 + 24b557d commit d922114

File tree

13 files changed

+1477
-4747
lines changed

13 files changed

+1477
-4747
lines changed

.circleci/config.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ version: 2
33
aliases:
44
- &restore-cache
55
restore_cache:
6-
key: dependency-cache-{{ checksum "package.json" }}
6+
key: dependency-cache-{{ checksum "package.json" }}
77
- &install-deps
88
run:
9-
name: Install dependencies
10-
command: npm ci
9+
name: Install dependencies
10+
command: npm ci --ignore-scripts
1111
- &build-packages
1212
run:
13-
name: Build
14-
command: npm run build
13+
name: Build
14+
command: npm run build
1515
- &run-unit-tests
1616
run:
17-
name: Test
18-
command: npm run test
17+
name: Test
18+
command: npm run test
1919

2020
jobs:
2121
build:
2222
working_directory: ~/nest
2323
docker:
24-
- image: cimg/node:20.2
24+
- image: cimg/node:20.3
2525
steps:
2626
- checkout
2727
- run:
@@ -31,19 +31,19 @@ jobs:
3131
key: dependency-cache-{{ checksum "package.json" }}
3232
- run:
3333
name: Install dependencies
34-
command: npm ci
34+
command: npm ci --ignore-scripts
3535
- save_cache:
3636
key: dependency-cache-{{ checksum "package.json" }}
3737
paths:
3838
- ./node_modules
3939
- run:
4040
name: Build
41-
command: npm run build
41+
command: npm run build
4242

4343
unit_tests:
4444
working_directory: ~/nest
4545
docker:
46-
- image: cimg/node:20.2
46+
- image: cimg/node:20.3
4747
steps:
4848
- checkout
4949
- *restore-cache
@@ -59,4 +59,3 @@ workflows:
5959
- unit_tests:
6060
requires:
6161
- build
62-

0 commit comments

Comments
 (0)