Skip to content

Commit beb6b31

Browse files
authored
debug paths
Added debugging steps to check paths and versions.
1 parent 821b471 commit beb6b31

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/unit-test.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,15 @@ jobs:
2525
- name: Install dev dependencies
2626
run: sfw npm install --no-package-lock
2727

28-
- name: Run unit tests
29-
run: npm run test
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

0 commit comments

Comments
 (0)