Skip to content

Commit

Permalink
chore: ignore scripts in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jun 15, 2023
1 parent cc16c52 commit cc9d2b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -7,7 +7,7 @@ aliases:
- &install-deps
run:
name: Install dependencies
command: npm ci
command: npm ci --ignore-scripts
- &build-packages
run:
name: Build
Expand All @@ -17,7 +17,7 @@ jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:20.2
- image: cimg/node:20.3
steps:
- checkout
- run:
Expand All @@ -27,7 +27,7 @@ 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:
Expand Down

0 comments on commit cc9d2b6

Please sign in to comment.