This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,12 @@ jobs:
38
38
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
39
39
- name : install dependencies
40
40
shell : bash
41
- run : ${APM} ci
41
+ run : |
42
+ "${APM}" ci
42
43
- name : run tests
43
44
shell : bash
44
- run : ${ATOM} --test test/
45
+ run : |
46
+ "${ATOM}" --test test/
45
47
- name : report code coverage
46
48
shell : bash
47
49
env :
@@ -78,10 +80,12 @@ jobs:
78
80
sudo unzip -q /tmp/atom.zip -d /tmp/atom
79
81
- name : install dependencies
80
82
shell : bash
81
- run : ${APM} ci
83
+ run : |
84
+ "${APM}" ci
82
85
- name : run tests
83
86
shell : bash
84
- run : ${ATOM} --test test/
87
+ run : |
88
+ "${ATOM}" --test test/
85
89
- name : report code coverage
86
90
shell : bash
87
91
env :
@@ -123,7 +127,8 @@ jobs:
123
127
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
124
128
- name : install dependencies
125
129
shell : bash
126
- run : ${APM} ci
130
+ run : |
131
+ "${APM}" ci
127
132
- name : lint
128
133
shell : bash
129
134
run : npm run lint
@@ -156,7 +161,9 @@ jobs:
156
161
dpkg-deb -x /tmp/atom-amd64.deb /tmp/atom
157
162
- name : install dependencies
158
163
shell : bash
159
- run : ${APM} ci
164
+ run : |
165
+ "${APM}" ci
160
166
- name : run snapshot tests
161
167
shell : bash
162
- run : ${ATOM} --test test/
168
+ run : |
169
+ "${ATOM}" --test test/
You can’t perform that action at this time.
0 commit comments