Skip to content

Commit b7c17b1

Browse files
authored
CircleCI config update: nodejs install (#2239)
* update circleci config not to download nodejs
1 parent 24b0b56 commit b7c17b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -690,12 +690,12 @@ jobs:
690690
# export env from file (created in build-playwright-job)
691691
cat playwright-env/envvars | awk '{print "export " $0}' >> "$BASH_ENV"
692692
source $BASH_ENV
693-
- node/install:
694-
install-yarn: false
695-
node-version: '18.13.0' # LTS version
693+
- run:
694+
name: Check current version of node
695+
command: node -v
696696
- run:
697697
working_directory: *playwright_path
698-
command: npm install --quiet
698+
command: npm ci
699699
- run:
700700
working_directory: *playwright_path
701701
command: npx playwright install --with-deps chromium # Only need Chrome browser

0 commit comments

Comments
 (0)