Skip to content

Commit 1126650

Browse files
committed
Update CI workflow for debugging npm install
1 parent dddf2c2 commit 1126650

1 file changed

Lines changed: 23 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
name: CI
1+
# CI Workflow Update for Debugging npm install
2+
3+
name: CI Workflow
24

35
on:
46
push:
@@ -8,18 +10,27 @@ on:
810
jobs:
911
build:
1012
runs-on: ubuntu-latest
13+
1114
steps:
12-
- name: Checkout code
13-
uses: actions/checkout@v2
15+
- name: Checkout Repository
16+
uses: actions/checkout@v2
1417

15-
- name: Install dependencies
16-
run: npm install
17-
working-directory: ./automated-testing
18+
- name: List Project Directory
19+
run: |
20+
echo "Current directory structure:"
21+
ls -al
22+
cd <your-project-directory>
23+
echo "Project directory structure:"
24+
ls -al
1825
19-
- name: Build TypeScript
20-
run: npm run build
21-
working-directory: ./automated-testing
26+
- name: Install Dependencies
27+
run: |
28+
cd <your-project-directory>
29+
echo "Running npm install..."
30+
npm install --verbose
2231
23-
- name: Run tests
24-
run: npm test
25-
working-directory: ./automated-testing
32+
- name: Run Tests
33+
run: |
34+
cd <your-project-directory>
35+
echo "Running tests..."
36+
npm test --verbose

0 commit comments

Comments
 (0)