Skip to content

Commit

Permalink
add playwright to dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dmail committed Oct 3, 2023
1 parent 3edf4e8 commit 84c62f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
node-version: ${{ matrix.node }}
- name: Install node modules
run: npm install
- name: Install playwright
run: npm run playwright:install
- name: Run ESLint
run: npm run eslint
- name: Run tests
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"test": "npm run test --workspaces --if-present",
"workspace:versions": "node ./scripts/workspace_versions.mjs",
"workspace:publish": "node ./scripts/workspace_publish.mjs",
"playwright:install": "npx playwright install-deps && npx playwright install",
"prettier": "prettier --write ."
},
"devDependencies": {
Expand All @@ -31,6 +32,7 @@
"eslint": "8.50.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.28.1",
"prettier": "3.0.3"
"prettier": "3.0.3",
"playwright": "1.38.1"
}
}

0 comments on commit 84c62f1

Please sign in to comment.