Skip to content

Commit

Permalink
fix(ci): run regular build on osx and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Oct 16, 2019
1 parent 417e4e8 commit ce27b0a
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ matrix:
allow_failures:
- os: windows
- os: osx
env:
global:
# https://travis-ci.community/t/windows-builds-time-out-during-cache-restore/4642/4
- >
DISABLE_WINDOWS_DEFENDER=`powershell -Command
Set-MpPreference -DisableArchiveScanning \\\$true`
- >
DISABLE_WINDOWS_DEFENDER=`powershell -Command
Set-MpPreference -DisableRealtimeMonitoring \\\$true`
- >
DISABLE_WINDOWS_DEFENDER=`powershell -Command
Set-MpPreference -DisableBehaviorMonitoring \\\$true`
cache:
- npm
- yarn
Expand All @@ -19,9 +31,12 @@ addons:
install:
- npm run ci:install
script:
- npm run ci:build
- npm run ci:test
- npm run ci:lint
- npm run build
- npm run test
- npm run lint
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
notifications:
email: false
email:
if: branch = master
on_success: never
on_failure: always

0 comments on commit ce27b0a

Please sign in to comment.