Skip to content

Commit

Permalink
chore: install playwright deps before playwright
Browse files Browse the repository at this point in the history
We currently install playwright before its dependencies, and this seems
to be causing our CI to fail since a new playwright release at some
point.

Switching them around should fix it.
  • Loading branch information
43081j committed Jan 26, 2025
1 parent 5342f3e commit 964d028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"lint": "eslint --ignore-path .gitignore .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run test:node && npm run test:browser",
"pretest:browser": "npx playwright install && npx playwright install-deps && npm run build",
"pretest:browser": "npx playwright install-deps && npx playwright install && npm run build",
"test:browser": "wtr",
"pretest:node": "npm run build",
"test:node": "mocha",
Expand Down

0 comments on commit 964d028

Please sign in to comment.