From 541a95eebad36062976fc188b2120e7995367a68 Mon Sep 17 00:00:00 2001 From: Jeremy Elbourn Date: Wed, 15 Nov 2017 16:34:59 -0800 Subject: [PATCH] build: manually invoke postinstall for circleci (#8466) --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 32e578d5fce8..58094fc3e716 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,6 +31,9 @@ jobs: key: material2-{{ .Branch }}-{{ checksum "package-lock.json" }} - run: bazel run @nodejs//:npm install + # For some reason, circleci needs the postinstall to be run explicitly. + # This may be unnecessary once ngcontainer uses nodejs 8 + - run: bazel run @nodejs//:npm run postinstall - run: bazel build src/cdk/... - save_cache: key: material2-{{ .Branch }}-{{ checksum "package-lock.json" }}