Skip to content

Commit

Permalink
Merge pull request #1449 from nestjs/10.0.0
Browse files Browse the repository at this point in the history
chore: laying the grounds for 10.0.0
  • Loading branch information
kamilmysliwiec committed Jun 15, 2023
2 parents 96efd13 + 24b557d commit d922114
Show file tree
Hide file tree
Showing 13 changed files with 1,477 additions and 4,747 deletions.
23 changes: 11 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ version: 2
aliases:
- &restore-cache
restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package.json" }}
- &install-deps
run:
name: Install dependencies
command: npm ci
name: Install dependencies
command: npm ci --ignore-scripts
- &build-packages
run:
name: Build
command: npm run build
name: Build
command: npm run build
- &run-unit-tests
run:
name: Test
command: npm run test
name: Test
command: npm run test

jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:20.2
- image: cimg/node:20.3
steps:
- checkout
- run:
Expand All @@ -31,19 +31,19 @@ jobs:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm ci
command: npm ci --ignore-scripts
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: Build
command: npm run build
command: npm run build

unit_tests:
working_directory: ~/nest
docker:
- image: cimg/node:20.2
- image: cimg/node:20.3
steps:
- checkout
- *restore-cache
Expand All @@ -59,4 +59,3 @@ workflows:
- unit_tests:
requires:
- build

Loading

0 comments on commit d922114

Please sign in to comment.