We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7eae99 commit 9cfb2fbCopy full SHA for 9cfb2fb
2 files changed
.github/workflows/main-workflow.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Install dependencies
18
run: npm ci
19
- name: Install Playwright Browsers
20
- run: npm run playwright install --with-deps
+ run: npm run playwright:install
21
- name: Install allure report
22
run: npm install -D allure-playwright
23
- name: Debug Configuration ID
package.json
@@ -5,7 +5,8 @@
5
"scripts": {
6
"allure:generate": "allure generate \"./allure-results\" --clean",
7
"allure:open": "allure open \"./allure-report\"",
8
- "playwright:test": "playwright test fast.spec.ts"
+ "playwright:test": "playwright test fast.spec.ts",
9
+ "playwright:install": "playwright install --with-deps"
10
},
11
"keywords": [],
12
"author": "",
0 commit comments