We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d5afee commit ff3d6c3Copy full SHA for ff3d6c3
3 files changed
.github/workflows/nodejs.yml
@@ -17,6 +17,7 @@ jobs:
17
run: |
18
npm install
19
npm run build
20
+ npx playwright install chromium
21
npm test
22
env:
23
CI: true
.github/workflows/publish.yml
@@ -19,6 +19,7 @@ jobs:
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
+ - run: npx playwright install chromium
- run: npm test
24
- run: npm version ${TAG_NAME} --git-tag-version=false
25
vitest.config.js
@@ -9,10 +9,7 @@ export default defineConfig({
9
headless: true,
10
instances: [
11
{
12
- browser: 'chromium',
13
- launch: {
14
- executablePath: '/usr/bin/chromium'
15
- }
+ browser: 'chromium'
16
}
]
0 commit comments