Skip to content

Commit

Permalink
Merge 41961f9 into 1207357
Browse files Browse the repository at this point in the history
  • Loading branch information
serut committed Oct 8, 2021
2 parents 1207357 + 41961f9 commit 037cac7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
working_directory: ~/meteor-coverage
steps:
- checkout
- run: curl https://install.meteor.com | /bin/sh
- run: npm install -g meteor
- run: meteor npm install
- run: mkdir .coverage
- run: meteor npm test
Expand Down
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ addons:
chrome: stable

node_js:
- "8.9.1"
- "14"

cache:
directories:
Expand All @@ -18,17 +18,22 @@ before_cache:
before_install:
# Download Meteor - Keep in mind that you need
# to remove your travis cache to get meteor updates
- export PATH="$HOME/.meteor:$PATH"
- curl https://install.meteor.com/?release=1.8 | /bin/sh

- export PATH="$HOME/.meteor:$PATH:$(npm bin -g)"
- npm install -g meteor
# Install dependencies
- npm install -g eslint coveralls codecov.io codacy-coverage
- npm list -g
- env
- meteor-installer uninstall
- meteor-installer install
- meteor npm install

services:
- xvfb

script:
- ls "$HOME/.meteor"
- meteor npm test
- sed 's/packages\/meteor-coverage\///' someapp/.coverage/lcov.info | coveralls || true # ignore coveralls error
- sed 's/packages\/meteor-coverage\///' someapp/.coverage/lcov.info | codecov || true # ignore codecov error
Expand Down

0 comments on commit 037cac7

Please sign in to comment.