Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..
Expand All @@ -32,3 +33,4 @@ test_script:
- yarn lint
- yarn test -i
- yarn codecov
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER) { yarn cypress run --record }
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion cypress.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"projectId": "rryrv7"
"projectId": "rryrv7",
"videoCompression": false
}