Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@ jobs:
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node-version }}
- name: Install socket firewall
run: npm i -g sfw
- name: Install puppeteer safely
run: sfw npm i -g puppeteer
- name: Install chromium
run: npx puppeteer browsers install chrome
run: npx --no --offline puppeteer browsers install chrome
- name: Install dependencies
run: npm install --ignore-scripts
- name: build
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ jobs:
# Ensure npm 11.5.1 or later is installed
- name: Update npm
run: npm install -g npm@latest
- name: Install socket firewall
run: npm i -g sfw
- name: Install puppeteer safely
run: sfw npm i -g puppeteer
- name: Install chromium
run: npx puppeteer browsers install chrome
run: npx --no --offline puppeteer browsers install chrome
- run: npm install --ignore-scripts
- run: npm run build --if-present
- run: npm test
Expand Down
Loading