From 4ec7d98c56401807126d188d585a6720b14802ad Mon Sep 17 00:00:00 2001 From: Daniel Dyla Date: Thu, 6 Feb 2020 10:53:14 -0500 Subject: [PATCH] chore: allow builds as root in docs --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 39b402a342a..4629c83597e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -160,6 +160,8 @@ jobs: lint_&_docs: docker: - image: node:12 + environment: + NPM_CONFIG_UNSAFE_PERM: true steps: - checkout - run: @@ -167,7 +169,7 @@ jobs: command: npm i -g lerna - run: name: Install API dependencies - command: lerna bootstrap --scope @opentelemetry/api --include-filtered-dependencies + command: lerna bootstrap -- --only=dev - run: name: Check code style and linting command: npm run check