Skip to content

Commit 0da1938

Browse files
philippfrommefake-join[bot]
authored andcommitted
fix: skip PhantomJS and Firefox on Windows CI
* PhantomJS times out on test * Firefox times out on test distro
1 parent 8a40658 commit 0da1938

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/CI.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,22 @@ jobs:
3030
run: npm ci
3131
- name: Wire dependencies
3232
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
3338
- name: Build
3439
env:
3540
COVERAGE: 1
3641
TEST_BROWSERS: Firefox,PhantomJS,ChromeHeadless
3742
if: matrix.os == 'ubuntu-latest'
3843
run: xvfb-run npm run all
39-
- name: Upload Coverage
40-
run: npx codecov
41-
if: matrix.os == 'ubuntu-latest'
4244
- name: Build
4345
env:
44-
TEST_BROWSERS: PhantomJS,ChromeHeadless
45-
if: matrix.os != 'ubuntu-latest'
46+
TEST_BROWSERS: ChromeHeadless
47+
if: matrix.os == 'windows-latest'
4648
run: npm run all
49+
- name: Upload Coverage
50+
run: npx codecov
51+
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)