Update node version to 14.15.1

This commit is contained in:
AkiraFukushima 2020-12-01 23:16:59 +09:00
parent 6d8dd2393b
commit 26fbf14bff
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: node:12.13.1-buster-slim
- image: node:14.15.1-buster-slim
working_directory: /var/opt/app
steps:
- checkout
@ -14,13 +14,13 @@ jobs:
- restore_cache:
name: Restoring cache - node_modules
keys:
- node_modules-{{ arch }}-node12.13.1-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
- node_modules-{{ arch }}-node14.15.1-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
- run:
name: Install packages
command: yarn install
- save_cache:
name: Saving cache - node_modules
key: node_modules-{{ arch }}-node12.13.1-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
key: node_modules-{{ arch }}-node14.15.1-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
paths:
- node_modules
- run: