Skip to content

Commit

Permalink
fix: update swagger, other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Aug 29, 2019
1 parent 2fef475 commit dc4ed9e
Show file tree
Hide file tree
Showing 6 changed files with 12,858 additions and 24 deletions.
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

16 changes: 10 additions & 6 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: npm-install
command: npm install
command: npm ci
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- ~/.npm
- run:
name: test
command: npm run test:ci
Expand All @@ -29,8 +29,8 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm install
key: dependency-cache-{{ checksum "package-lock.json" }}
- run: npm ci
- run: npm run build
- run: npm run semantic-release

Expand All @@ -41,5 +41,9 @@ workflows:
jobs:
- test
- release:
filters:
branches:
only:
- master
requires:
- test
Loading

0 comments on commit dc4ed9e

Please sign in to comment.