Skip to content

Commit

Permalink
fix(travis): modify ci PATH check apm
Browse files Browse the repository at this point in the history
* chore(travis): check atom version
  • Loading branch information
duncdrum committed Dec 15, 2018
1 parent c8e9559 commit 67ac6e0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
branch: master
provider: script
skip_cleanup: true
before_script: export PATH=$PATH:~/atom/usr/bin
before_script:
- echo $PATH
- apm -v
script:
- npx semantic-release

Expand All @@ -42,7 +44,18 @@ notifications:
on_success: never
on_failure: change

before_script:
- export PATH=$PATH:~/atom/usr/bin
# - echo $PATH


script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh

after_success:
- apm -v

after_failure:
- echo $PATH

0 comments on commit 67ac6e0

Please sign in to comment.