We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c09867 commit 920d89cCopy full SHA for 920d89c
.github/workflows/ci.yml
@@ -10,18 +10,18 @@ jobs:
10
11
steps:
12
- name: Checkout repository
13
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
14
15
- name: Set up Node.js
16
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v5
17
with:
18
node-version: "24" # Use your desired Node.js version
19
20
- name: Install dependencies
21
run: npm install
22
23
- name: Install Playwright browsers
24
- run: npx playwright install
+ run: npx playwright install --with-deps chromium chromium-headless-shell
25
26
- name: Run Vitest browser tests
27
run: npm run test:ci # or whatever script runs your vitest command
0 commit comments