Skip to content

Commit 72e3057

Browse files
committed
verify ecompromised on windows
1 parent cbc6fa9 commit 72e3057

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Reproduce npx ECOMPROMISED error
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
test:
8+
continue-on-error: true
9+
strategy:
10+
matrix:
11+
os: ['windows-latest', 'ubuntu-latest']
12+
node: ['22', '24']
13+
package: ['jest']
14+
name: ${{ matrix.package }} on ${{ matrix.os }} with Node ${{ matrix.node }}
15+
runs-on: ${{ matrix.os }}
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-node@v4
19+
with:
20+
node-version: ${{ matrix.node }}
21+
- run: npm install
22+
- run: node bin/npx-cli.js --yes ${{ matrix.package }} --version

0 commit comments

Comments
 (0)