mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-22 16:09:14 +08:00
fix(build/travis) Only run tests on mac
This commit is contained in:
parent
f33667e1a1
commit
cab1acfcc9
1 changed files with 5 additions and 1 deletions
|
@ -72,7 +72,11 @@ before_script:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- script/bootstrap && npm test && script/grunt ci --stack --no-color
|
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
|
||||||
|
script/bootstrap && script/grunt ci --stack --no-color
|
||||||
|
else
|
||||||
|
script/bootstrap && npm test && script/grunt ci --stack --no-color
|
||||||
|
fi
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|
Loading…
Reference in a new issue