@@ -38,12 +38,10 @@ jobs:
38
38
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
39
39
- name : install dependencies
40
40
shell : bash
41
- run : |
42
- "${APM}" ci
41
+ run : ${APM} ci
43
42
- name : run tests
44
43
shell : bash
45
- run : |
46
- "${ATOM}" --test test/
44
+ run : ${ATOM} --test test/
47
45
- name : report code coverage
48
46
shell : bash
49
47
env :
65
63
env :
66
64
ATOM_GITHUB_BABEL_ENV : coverage
67
65
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
70
68
MOCHA_TIMEOUT : 60000
71
69
UNTIL_TIMEOUT : 30000
72
70
steps :
@@ -80,12 +78,10 @@ jobs:
80
78
sudo unzip -q /tmp/atom.zip -d /tmp/atom
81
79
- name : install dependencies
82
80
shell : bash
83
- run : |
84
- "${APM}" ci
81
+ run : ${APM} ci
85
82
- name : run tests
86
83
shell : bash
87
- run : |
88
- "${ATOM}" --test test/
84
+ run : ${ATOM} --test test/
89
85
- name : report code coverage
90
86
shell : bash
91
87
env :
@@ -127,8 +123,7 @@ jobs:
127
123
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
128
124
- name : install dependencies
129
125
shell : bash
130
- run : |
131
- "${APM}" ci
126
+ run : ${APM} ci
132
127
- name : lint
133
128
shell : bash
134
129
run : npm run lint
@@ -161,9 +156,7 @@ jobs:
161
156
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
162
157
- name : install dependencies
163
158
shell : bash
164
- run : |
165
- "${APM}" ci
159
+ run : ${APM} ci
166
160
- name : run snapshot tests
167
161
shell : bash
168
- run : |
169
- "${ATOM}" --test test/
162
+ run : ${ATOM} --test test/
0 commit comments