Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -690,12 +690,12 @@ jobs:
# export env from file (created in build-playwright-job)
cat playwright-env/envvars | awk '{print "export " $0}' >> "$BASH_ENV"
source $BASH_ENV
- node/install:
install-yarn: false
node-version: '18.13.0' # LTS version
Comment on lines -693 to -695
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Install custom nodejs version is not working again. It has been very flaky lately. Fallback to default nodejs version provided by CircleCI default.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- run:
name: Check current version of node
command: node -v
- run:
working_directory: *playwright_path
command: npm install --quiet
command: npm ci
- run:
working_directory: *playwright_path
command: npx playwright install --with-deps chromium # Only need Chrome browser
Expand Down