Skip to content

Commit 03e81a9

Browse files
committed
fix test?
1 parent 640a5c7 commit 03e81a9

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/node.js.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,15 @@ jobs:
2828

2929
- name: Install stuff
3030
run: npm ci
31-
env:
32-
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'
3331

3432
- name: build
3533
run: npm run ci
3634

35+
- name: Install chrome
36+
run: npx @puppeteer/browsers install chrome@stable
37+
3738
- name: Run headful puppeteer tests
38-
uses: elliottback/puppeteer-headful@22.18.0
39-
with:
40-
args: npm test
39+
run: npm test
4140

4241
- name: Archive artifacts
4342
uses: actions/upload-artifact@v4

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,15 @@ jobs:
3232

3333
- name: Install stuff
3434
run: npm ci
35-
env:
36-
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'
3735

3836
- name: build
3937
run: npm run ci
4038

39+
- name: Install chrome
40+
run: npx @puppeteer/browsers install chrome@stable
41+
4142
- name: Run headful puppeteer tests
42-
uses: elliottback/puppeteer-headful@22.18.0
43-
with:
44-
args: npm test
43+
run: npm test
4544

4645
- name: Archive Test result artifacts
4746
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)