Skip to content

Commit

Permalink
fix: re-enable lint step in CircleCI (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Jul 11, 2018
1 parent 4909878 commit 7cfde07
Show file tree
Hide file tree
Showing 5 changed files with 2,233 additions and 2,214 deletions.
30 changes: 18 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ workflows:
- node10:
filters: *all_commits
- docs:
requires:
- node6
- node8
- node10
filters: *all_commits
- lint:
filters: *all_commits
- system_tests:
requires:
- docs
filters:
branches:
only: master
tags: &releases
only: '/^v[\d.]+$/'
- publish_npm:
requires:
- node6
- node8
- node10
- system_tests
- docs
filters:
branches:
ignore: /.*/
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
npm install
environment:
NPM_CONFIG_PREFIX: /home/node/.npm-global
- run: npm test
- run: node_modules/.bin/codecov
- run: npm run test-only
- run: npm run codecov
node8:
docker:
- image: 'node:8'
Expand All @@ -77,6 +77,14 @@ jobs:
- image: 'node:10'
user: node
steps: *unit_tests_steps
lint:
docker:
- image: 'node:10'
user: node
steps:
- checkout
- run: *npm_install_and_link
- run: npm run check
docs:
docker:
- image: 'node:10'
Expand All @@ -85,9 +93,7 @@ jobs:
- checkout
- run: *remove_package_lock
- run: *npm_install_and_link
- run:
name: Build documentation.
command: npm run docs
- run: npm run docs
system_tests:
docker:
- image: 'node:10'
Expand Down Expand Up @@ -120,5 +126,5 @@ jobs:
user: node
steps:
- checkout
- run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
- run: npm publish
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ out/
system-test/secrets.js
system-test/*key.json
*.lock
build/

0 comments on commit 7cfde07

Please sign in to comment.