We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba6558f commit 1b03f33Copy full SHA for 1b03f33
1 file changed
.github/workflows/nodejs.yml
@@ -27,13 +27,15 @@ jobs:
27
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
28
with:
29
node-version: ${{ matrix.node-version }}
30
+ - name: Install socket firewall
31
+ run: npm i -g sfw
32
- name: Install dependencies
- run: npm install --ignore-scripts
33
+ run: sfw npm install --ignore-scripts
34
- name: Build
35
run: npm run build
36
- name: Install Playwright browsers
37
if: matrix.os == 'ubuntu-latest'
- run: npx playwright install --with-deps
38
+ run: npx --no --offline playwright install --with-deps
39
- name: Run tests
40
run: npm run coverage
41
- name: Run e2e tests
0 commit comments