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: 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 }