From 4d73cf47d25cb0693fc2cb50a92917f4f0402de3 Mon Sep 17 00:00:00 2001 From: patelravi Date: Tue, 5 Feb 2019 16:37:53 +0530 Subject: [PATCH] Resolving circle ci config issue. --- .circleci/config.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 419347d..230cd2f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,13 +1,10 @@ version: 2 # use CircleCI 2.0 jobs: # a collection of steps build: # runs not using Workflows must have a `build` job as entry point - working_directory: ~/ # directory where steps will run + working_directory: /tmp # directory where steps will run docker: # run the steps with Docker - image: circleci/node:4.8.2 # ...with this image as the primary container; this is where all `steps` will run steps: # a collection of executable commands - - run: - name: file-permission - command: 'chown -R $USER:$USER ~/' - checkout # special step to check out source code to working directory - run: name: update-npm