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

Commit 53cc4b7

Browse files
committed
Maybe escaping?
1 parent 7e7d2b2 commit 53cc4b7

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@ jobs:
3838
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
3939
- name: install dependencies
4040
shell: bash
41-
run: |
42-
"${APM}" ci
41+
run: ${APM} ci
4342
- name: run tests
4443
shell: bash
45-
run: |
46-
"${ATOM}" --test test/
44+
run: ${ATOM} --test test/
4745
- name: report code coverage
4846
shell: bash
4947
env:
@@ -65,8 +63,8 @@ jobs:
6563
env:
6664
ATOM_GITHUB_BABEL_ENV: coverage
6765
ATOM_CHANNEL: beta
68-
ATOM: /tmp/atom/Atom Beta.app/Contents/Resources/app/atom.sh
69-
APM: /tmp/atom/Atom Beta.app/Contents/Resources/app/apm/bin/apm
66+
ATOM: /tmp/atom/Atom\ Beta.app/Contents/Resources/app/atom.sh
67+
APM: /tmp/atom/Atom\ Beta.app/Contents/Resources/app/apm/bin/apm
7068
MOCHA_TIMEOUT: 60000
7169
UNTIL_TIMEOUT: 30000
7270
steps:
@@ -80,12 +78,10 @@ jobs:
8078
sudo unzip -q /tmp/atom.zip -d /tmp/atom
8179
- name: install dependencies
8280
shell: bash
83-
run: |
84-
"${APM}" ci
81+
run: ${APM} ci
8582
- name: run tests
8683
shell: bash
87-
run: |
88-
"${ATOM}" --test test/
84+
run: ${ATOM} --test test/
8985
- name: report code coverage
9086
shell: bash
9187
env:
@@ -127,8 +123,7 @@ jobs:
127123
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
128124
- name: install dependencies
129125
shell: bash
130-
run: |
131-
"${APM}" ci
126+
run: ${APM} ci
132127
- name: lint
133128
shell: bash
134129
run: npm run lint
@@ -161,9 +156,7 @@ jobs:
161156
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
162157
- name: install dependencies
163158
shell: bash
164-
run: |
165-
"${APM}" ci
159+
run: ${APM} ci
166160
- name: run snapshot tests
167161
shell: bash
168-
run: |
169-
"${ATOM}" --test test/
162+
run: ${ATOM} --test test/

0 commit comments

Comments
 (0)