Skip to content

Commit

Permalink
chore: change docker image (#163)
Browse files Browse the repository at this point in the history
* chore: change docker image

* chore: bumps cache key
  • Loading branch information
benjamind authored Mar 27, 2023
1 parent 9e43a3f commit a1df68a
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.1
executors:
node8:
docker:
- image: mcr.microsoft.com/playwright:focal
- image: mcr.microsoft.com/playwright:v1.32.0-focal
environment:
NODE_ENV: development
NPM_CONFIG_PREFIX: ~/.npm-global
Expand All @@ -12,14 +12,14 @@ commands:
- checkout
- restore_cache:
keys:
- v2-dependencies-{{ arch }}-{{ checksum "package-lock.json" }}
- v2-dependencies-2023-3-27-{{ arch }}-{{ checksum "package-lock.json" }}
- run:
name: Installing Dependencies
command: npm i
- save_cache:
paths:
- node_modules
key: v2-dependencies-{{ arch }}-{{ checksum "package-lock.json" }}
key: v2-dependencies-2023-3-27-{{ arch }}-{{ checksum "package-lock.json" }}
jobs:
build_and_test:
executor: node8
Expand Down

0 comments on commit a1df68a

Please sign in to comment.