Skip to content

Commit c75230c

Browse files
authored
[ci] Remove separate npm install step. NFC (#23313)
This is coverted by `./bootstrap` these days.
1 parent a927b40 commit c75230c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ commands:
5555
description: "bootstrap"
5656
steps:
5757
- run: ./bootstrap
58-
npm-install:
59-
description: "npm ci"
60-
steps:
61-
- run: npm ci
6258
pip-install:
6359
description: "pip install"
6460
parameters:
@@ -164,7 +160,6 @@ commands:
164160
cat ~/emsdk/.emscripten
165161
- emsdk-env
166162
- bootstrap
167-
- npm-install
168163
build-libs:
169164
description: "Build all libraries"
170165
steps:
@@ -223,7 +218,6 @@ commands:
223218
command: git submodule update --init
224219
- emsdk-env
225220
- bootstrap
226-
- npm-install
227221
- pip-install
228222
upload-test-results:
229223
description: "Upload test results"
@@ -443,7 +437,7 @@ jobs:
443437
executor: linux-node
444438
steps:
445439
- checkout
446-
- npm-install
440+
- run: npm ci
447441
- run: |
448442
npm run lint
449443
npm run check

0 commit comments

Comments
 (0)