Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.
Merged
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ jobs:
- image: circleci/node:4-browsers
steps:
- checkout
- run: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
- run: make install
- run: make test
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
- run: make test
publish:
docker:
- image: circleci/node:4-browsers
Expand Down