Skip to content

Commit

Permalink
Update node version to 12.13.1 in CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
h3poteto committed Dec 11, 2019
1 parent ee8abc0 commit ab63439
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: node:10.16.0-stretch-slim
- image: node:12.13.1-buster-slim
working_directory: /var/opt/app
steps:
- checkout
Expand All @@ -14,13 +14,13 @@ jobs:
- restore_cache:
name: Restoring cache - node_modules
keys:
- node_modules-{{ arch }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
- node_modules-{{ arch }}-{{ node-12.13.1 }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
- run:
name: Install packages
command: npm install
- save_cache:
name: Saving cache - node_modules
key: node_modules-{{ arch }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
key: node_modules-{{ arch }}-{{ node-12.13.1 }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
paths:
- node_modules
- run:
Expand Down

0 comments on commit ab63439

Please sign in to comment.