Skip to content

Commit 6b5d533

Browse files
authored
updated workflow file
fixed syntax issues
1 parent 7fbb81e commit 6b5d533

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/test_build.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ jobs:
2424
node-version: ${{ matrix.node-version }}
2525
cache: 'npm'
2626

27-
- name: Test and Build
28-
- run: |
29-
npm ci
30-
npm test
31-
npm run prebuild --if-present
32-
echo "Done"
27+
- name: Install dependencies
28+
run: npm ci
29+
30+
- name: Tests
31+
run: npm test
32+
33+
- name: Build
34+
run: npm run prebuild --if-present

0 commit comments

Comments
 (0)