fix: skip PhantomJS and Firefox on Windows CI
* PhantomJS times out on test * Firefox times out on test distro
This commit is contained in:
parent
8a40658b21
commit
0da1938ea3
|
@ -30,17 +30,22 @@ jobs:
|
||||||
run: npm ci
|
run: npm ci
|
||||||
- name: Wire dependencies
|
- name: Wire dependencies
|
||||||
run: ./tasks/wiredeps_github
|
run: ./tasks/wiredeps_github
|
||||||
|
- name: Build
|
||||||
|
env:
|
||||||
|
TEST_BROWSERS: PhantomJS,ChromeHeadless
|
||||||
|
if: matrix.os == 'macos-latest'
|
||||||
|
run: npm run all
|
||||||
- name: Build
|
- name: Build
|
||||||
env:
|
env:
|
||||||
COVERAGE: 1
|
COVERAGE: 1
|
||||||
TEST_BROWSERS: Firefox,PhantomJS,ChromeHeadless
|
TEST_BROWSERS: Firefox,PhantomJS,ChromeHeadless
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: xvfb-run npm run all
|
run: xvfb-run npm run all
|
||||||
|
- name: Build
|
||||||
|
env:
|
||||||
|
TEST_BROWSERS: ChromeHeadless
|
||||||
|
if: matrix.os == 'windows-latest'
|
||||||
|
run: npm run all
|
||||||
- name: Upload Coverage
|
- name: Upload Coverage
|
||||||
run: npx codecov
|
run: npx codecov
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
- name: Build
|
|
||||||
env:
|
|
||||||
TEST_BROWSERS: PhantomJS,ChromeHeadless
|
|
||||||
if: matrix.os != 'ubuntu-latest'
|
|
||||||
run: npm run all
|
|
||||||
|
|
Loading…
Reference in New Issue