We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a40658 commit 0da1938Copy full SHA for 0da1938
1 file changed
.github/workflows/CI.yml
@@ -30,17 +30,22 @@ jobs:
30
run: npm ci
31
- name: Wire dependencies
32
run: ./tasks/wiredeps_github
33
+ - name: Build
34
+ env:
35
+ TEST_BROWSERS: PhantomJS,ChromeHeadless
36
+ if: matrix.os == 'macos-latest'
37
+ run: npm run all
38
- name: Build
39
env:
40
COVERAGE: 1
41
TEST_BROWSERS: Firefox,PhantomJS,ChromeHeadless
42
if: matrix.os == 'ubuntu-latest'
43
run: xvfb-run npm run all
- - name: Upload Coverage
- run: npx codecov
- if: matrix.os == 'ubuntu-latest'
44
45
- TEST_BROWSERS: PhantomJS,ChromeHeadless
- if: matrix.os != 'ubuntu-latest'
46
+ TEST_BROWSERS: ChromeHeadless
47
+ if: matrix.os == 'windows-latest'
48
run: npm run all
49
+ - name: Upload Coverage
50
+ run: npx codecov
51
+ if: matrix.os == 'ubuntu-latest'
0 commit comments