Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade all the dependencies #372

Merged
merged 2 commits into from
Jun 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ unit_tests: &unit_tests
- run:
name: Install modules and dependencies.
command: npm install
- run:
name: Compile
command: npm run compile
- run:
name: Run unit tests.
command: npm test
command: npm run test-only
- run:
name: Submit coverage data to codecov.
command: npm run codecov
Expand All @@ -42,16 +45,13 @@ workflows:
filters: *release_tags
- node8:
filters: *release_tags
- node9:
filters: *release_tags
- node10:
filters: *release_tags
- publish_npm:
requires:
- node4
- node6
- node8
- node9
- node10
filters:
branches:
Expand Down Expand Up @@ -82,16 +82,24 @@ jobs:
- image: node:8
user: node
<<: *unit_tests
node9:
node10:
docker:
- image: node:9
- image: node:10
user: node
<<: *unit_tests
node10:
lint:
requires:
- node4
- node6
- node8
- node10
docker:
- image: node:10
user: node
<<: *unit_tests
steps:
- checkout
- run: npm install
- run: npm run check && npm run license-check

publish_npm:
docker:
Expand Down
Loading