Skip to content

Commit

Permalink
Switch CircleCI to node:13 image
Browse files Browse the repository at this point in the history
This is a more popular image on Circle, so it's more likely to be cached on any given build machine.
  • Loading branch information
kitten committed Apr 9, 2020
1 parent 5a34b9e commit fc1a5ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
executors:
node:
docker:
- image: circleci/node:12-buster
- image: node:13

aliases:
- &node_modules
Expand Down Expand Up @@ -80,7 +80,9 @@ jobs:
steps:
- run:
name: Install AWS CLI
command: sudo apt-get -y -qq install awscli
command: |
apt-get -y -qq install python-pip
pip install awscli --upgrade --user
- checkout
- *node_modules
- run:
Expand Down

0 comments on commit fc1a5ae

Please sign in to comment.