Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
fix: update dependencies, lint
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Oct 21, 2019
1 parent 89e0ac6 commit ad03168
Show file tree
Hide file tree
Showing 6 changed files with 18,545 additions and 40 deletions.
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

12 changes: 6 additions & 6 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,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 @@ -37,8 +37,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 Down
Loading

0 comments on commit ad03168

Please sign in to comment.