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 4be67ff commit 6d8c714Copy full SHA for 6d8c714
.github/workflows/smoke-tests.yml
@@ -19,14 +19,21 @@ jobs:
19
timeout-minutes: 15
20
env:
21
npm_config_loglevel: verbose
22
- npm_config_foreground_scripts: true
23
- PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
+ npm_config_foreground_scripts: "true"
24
steps:
25
- uses: actions/checkout@v4
26
- uses: actions/setup-node@v4
27
with:
28
node-version: ${{ matrix.node }}
29
cache: "npm"
30
- - run: npm install -g npm@10
31
- - run: npm ci
32
- - run: npm run test-smoke
+
+ - name: Install npm@10
+ run: npm install -g npm@10
33
+ - name: Bootstrap
34
+ run: |
35
+ npm config set puppeteer_skip_chromium_download true -g
36
+ npm run bootstrap
37
38
+ - name: Run smoke tests
39
+ run: npm run test-smoke
0 commit comments