Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 7e7d2b2

Browse files
committed
Quoting helps sometimes
1 parent c58ed76 commit 7e7d2b2

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ jobs:
3838
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
3939
- name: install dependencies
4040
shell: bash
41-
run: ${APM} ci
41+
run: |
42+
"${APM}" ci
4243
- name: run tests
4344
shell: bash
44-
run: ${ATOM} --test test/
45+
run: |
46+
"${ATOM}" --test test/
4547
- name: report code coverage
4648
shell: bash
4749
env:
@@ -78,10 +80,12 @@ jobs:
7880
sudo unzip -q /tmp/atom.zip -d /tmp/atom
7981
- name: install dependencies
8082
shell: bash
81-
run: ${APM} ci
83+
run: |
84+
"${APM}" ci
8285
- name: run tests
8386
shell: bash
84-
run: ${ATOM} --test test/
87+
run: |
88+
"${ATOM}" --test test/
8589
- name: report code coverage
8690
shell: bash
8791
env:
@@ -123,7 +127,8 @@ jobs:
123127
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
124128
- name: install dependencies
125129
shell: bash
126-
run: ${APM} ci
130+
run: |
131+
"${APM}" ci
127132
- name: lint
128133
shell: bash
129134
run: npm run lint
@@ -156,7 +161,9 @@ jobs:
156161
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
157162
- name: install dependencies
158163
shell: bash
159-
run: ${APM} ci
164+
run: |
165+
"${APM}" ci
160166
- name: run snapshot tests
161167
shell: bash
162-
run: ${ATOM} --test test/
168+
run: |
169+
"${ATOM}" --test test/

0 commit comments

Comments
 (0)