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

Commit

Permalink
fix: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Feb 1, 2020
1 parent 7a5a72f commit 16808d1
Show file tree
Hide file tree
Showing 5 changed files with 3,251 additions and 2,053 deletions.
10 changes: 5 additions & 5 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ version: 2.1
jobs:
test:
docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers
environment:
CHROME_BIN: '/usr/bin/google-chrome'
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: npm-install
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- run:
Expand All @@ -27,11 +27,11 @@ jobs:
command: bash <(curl -s https://codecov.io/bash)
release:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
- run: npm install
- run: npm run build
- run: npm run semantic-release
Expand Down

0 comments on commit 16808d1

Please sign in to comment.