Skip to content

Commit

Permalink
Update integrations to use Yarn (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMcMahon authored and larixer committed Oct 7, 2019
1 parent 31b09f5 commit 2602742
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ before_script:
- "yarn add mocha@$MOCHA_VERSION"

script:
- npm run cover
- yarn run cover

after_success:
- bash <(curl -s https://codecov.io/bash)
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ environment:
install:
# Get the wanted version of Node
- ps: Install-Product node $env:nodejs_version x64
# Typical npm stuff.
- npm install || (timeout 30 && npm install)
# Typical yarn stuff.
- yarn install || (timeout 30 && yarn install)

# test scripts
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- yarn --version
# run tests
- npm run test
- yarn run test

0 comments on commit 2602742

Please sign in to comment.