Skip to content

Commit 2a35d58

Browse files
authored
Fix: Docker command format in gha workflow
1 parent 8b6ad98 commit 2a35d58

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,8 @@ jobs:
1515
- name: Build and Test with Coverage
1616
run: |
1717
docker run --rm \
18-
-e PROPERTIES="BUILD_ID:${{ github.run_number }}" \
19-
-w "/app" \
20-
-v $PWD:/app \
21-
node:8 bash -c "\
22-
npm i --no-save -q; \
23-
npm run build; \
24-
npm run coverage -- --reporter mocha-junit-reporter; \
25-
chown -R $(id -u):$(id -g) ."
18+
-e PROPERTIES="BUILD_ID:${{ github.run_number }}" \
19+
-w "/app" \
20+
-v $PWD:/app \
21+
node:8 bash -c "npm i --no-save -q; npm run build; npm run coverage -- --reporter mocha-junit-reporter; chown -R $(id -u):$(id -g) ."
22+

0 commit comments

Comments
 (0)