File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 95
95
node_arch : x86
96
96
- os : ubuntu-16.04
97
97
node_version : 12
98
+ - os : ubuntu-latest
99
+ node_version : 12
100
+ snap : true
98
101
- os : macos-10.15
99
102
node_version : 12
100
103
steps :
@@ -115,6 +118,10 @@ jobs:
115
118
node-version : ${{ matrix.node_version }}
116
119
architecture : ${{ matrix.node_arch }}
117
120
121
+ - name : Setup Atom snap
122
+ if : ${{ contains(matrix.snap, 'true') }}
123
+ run : snap install atom --channel stable/fix-65
124
+
118
125
- name : Install dependencies only
119
126
run : |
120
127
npm install --ignore-scripts
@@ -134,6 +141,10 @@ jobs:
134
141
- name : Run tests
135
142
run : npm run test
136
143
144
+ - name : Run tests using Atom
145
+ if : ${{ contains(matrix.snap, 'true') }}
146
+ run : atom --test spec
147
+
137
148
- name : Run benchmarks
138
149
if : ${{ !contains(matrix.node_arch, 'x86') }} # https://github.com/npm/npm-lifecycle/issues/54
139
150
run : npm run benchmark
You can’t perform that action at this time.
0 commit comments