We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb6b31 commit 9544cb8Copy full SHA for 9544cb8
.github/workflows/unit-test.yml
@@ -18,22 +18,8 @@ jobs:
18
with:
19
node-version: '24.x'
20
21
- - uses: SocketDev/action@v1
22
- with:
23
- mode: firewall-free
24
-
25
- name: Install dev dependencies
26
- run: sfw npm install --no-package-lock
+ run: npm install --no-package-lock
27
28
- - name: Debug paths
29
- run: |
30
- echo "Current working directory:"
31
- pwd
32
- echo "Node version and path:"
33
- node -v
34
- where node
35
- echo "NPM version and path:"
36
- npm -v
37
- where npm
38
- echo "Check node_modules/.bin contents:"
39
- dir node_modules\.bin
+ - name: Run unit tests
+ run: npm run test
0 commit comments