From 5a43afec01648c8e7a51487a8b0361b0a6a6bf1c Mon Sep 17 00:00:00 2001 From: Rhys Evans Date: Sat, 21 Nov 2020 21:30:27 +0000 Subject: [PATCH] fix some docker image names --- .circleci/config.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e422af77..9c5c4fc4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,22 +14,22 @@ references: nodelts: &nodelts docker: - - image: cimg/node:14.7.0 + - image: cimg/node:14.15 browsers: &browsers docker: - - image: cimg/node:14.7.0-browsers + - image: cimg/node:14.15-browsers nodenext: &nodenext docker: - - image: cimg/node:15.2.1 + - image: cimg/node:15.2 node12: &node12 docker: - - image: cimg/node:12.18.3 + - image: cimg/node:12.18 node10: &node10 docker: - - image: cimg/node:10.22.0 + - image: cimg/node:10.22 node6: &node6 docker: - - image: cimg/node:6.17.1 + - image: cimg/node:6.17 workspace: &workspace attach_workspace: @@ -160,12 +160,6 @@ workflows: <<: *triggerable-by-tag requires: - checkout_code - # could be parallel with build, lint, and unit but it's a slow job - # And circlecifree tier only has 3 concurrent jobs, so overall faster - # to defer - - typecheck: - <<: *triggerable-by-tag - <<: *build-lint-unit - lint: <<: *triggerable-by-tag requires: @@ -174,6 +168,12 @@ workflows: <<: *triggerable-by-tag requires: - checkout_code + # could be parallel with build, lint, and unit but it's a slow job + # And circlecifree tier only has 3 concurrent jobs, so overall faster + # to defer + - typecheck: + <<: *triggerable-by-tag + <<: *build-lint-unit - nodefetch1: <<: *triggerable-by-tag <<: *build-lint-unit @@ -188,8 +188,7 @@ workflows: <<: *build-lint-unit - esm: <<: *triggerable-by-tag - requires: - - build + <<: *build-lint-unit - node10: <<: *triggerable-by-tag <<: *build-lint-unit