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 861ffe2 commit 8a4d16c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
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 @@ -30,12 +30,12 @@ jobs:
- checkout
- run:
name: Update NPM version
command: 'sudo npm install -g npm@^8'
command: sudo npm install -g npm@latest --ignore-scripts
- restore_cache:
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 8a4d16c

Please sign in to comment.