Skip to content

Commit b5ac5cc

Browse files
committed
Try using bootstrap
1 parent 4be67ff commit b5ac5cc

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,19 @@ jobs:
1919
timeout-minutes: 15
2020
env:
2121
npm_config_loglevel: verbose
22-
npm_config_foreground_scripts: true
23-
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
22+
npm_config_foreground_scripts: "true"
2423
steps:
2524
- uses: actions/checkout@v4
2625
- uses: actions/setup-node@v4
2726
with:
2827
node-version: ${{ matrix.node }}
2928
cache: "npm"
30-
- run: npm install -g npm@10
31-
- run: npm ci
32-
- run: npm run test-smoke
29+
30+
- name: Install npm@10
31+
run: npm install -g npm@10
32+
33+
- name: Bootstrap
34+
run: npm run bootstrap
35+
36+
- name: Run smoke tests
37+
run: npm run test-smoke

0 commit comments

Comments
 (0)