From 7d03409863f3e86ab8bce090baeeacdaf8269063 Mon Sep 17 00:00:00 2001 From: Hugo Alliaume Date: Wed, 31 Jul 2019 06:49:05 +0200 Subject: [PATCH 1/2] tweak travis/appveyor --- .appveyor.yml | 2 ++ .travis.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 47c5429..9753bc7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,6 +14,7 @@ install: - ps: Install-Product node $env:nodejs_version - npm install -g yarn - yarn install --frozen-lockfile + - ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER) { yarn cypress install } - cd example - yarn install --frozen-lockfile - cd .. @@ -32,3 +33,4 @@ test_script: - yarn lint - yarn test -i - yarn codecov + - ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER) { yarn cypress run --record } diff --git a/.travis.yml b/.travis.yml index 76e7696..bd08515 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ before_script: script: - yarn lint - yarn test -i && yarn codecov - - if [[ "${TRAVIS_EVENT_TYPE}" = pull_request ]]; then yarn cypress run --config watchForFileChanges=false --record; fi + - if [[ "${TRAVIS_EVENT_TYPE}" = pull_request ]]; then yarn cypress run --config --record; fi jobs: include: From 5e8d4f87fd1d685e4f4c7a62c4937e2de0e7c2a7 Mon Sep 17 00:00:00 2001 From: Hugo Alliaume Date: Wed, 31 Jul 2019 06:49:15 +0200 Subject: [PATCH 2/2] chore(cypress): disable video compression --- cypress.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress.json b/cypress.json index f4ea04f..0a52e87 100644 --- a/cypress.json +++ b/cypress.json @@ -1,3 +1,4 @@ { - "projectId": "rryrv7" + "projectId": "rryrv7", + "videoCompression": false }