Skip to content

Commit

Permalink
chore: update package-lock.json (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanmar511 authored and aalexand committed May 31, 2018
1 parent 7adb19d commit 8860ad1
Show file tree
Hide file tree
Showing 2 changed files with 591 additions and 1,061 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Expand Up @@ -34,6 +34,13 @@ gochecks: &gochecks
name: Run lint check.
command: golintlint=$(golint ./...) && if [ -n "$golintlint" ]; then printf 'golint found:\n%s\n' "$golintlint" && exit 1; fi

npmaudit: &npmaudit
steps:
- checkout
- run:
name: Run npm security audit.
command: npm audit

version: 2.0
workflows:
version: 2
Expand All @@ -49,12 +56,15 @@ workflows:
filters: *release_tags
- gocheck:
filters: *release_tags
- npmaudit:
filters: *release_tags
- publish_npm:
requires:
- node6
- node8
- node9
- gocheck
- npmaudit
filters:
branches:
ignore: /.*/
Expand All @@ -81,10 +91,19 @@ jobs:
- image: node:10
user: node
<<: *unit_tests
npmaudit:
docker:
- image: node:10
user: node
dependencies:
pre:
- npm install npm@latest -g
<<: *npmaudit
gocheck:
docker:
- image: circleci/golang:1.9
<<: *gochecks

publish_npm:
docker:
- image: node:8
Expand All @@ -100,3 +119,4 @@ jobs:
- run:
name: Publish the module to npm.
command: npm publish

0 comments on commit 8860ad1

Please sign in to comment.