We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc6fa9 commit 72e3057Copy full SHA for 72e3057
1 file changed
.github/workflows/test.yml
@@ -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