diff --git a/.circleci/config.yml b/.circleci/config.yml index dc88199..82d5141 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -42,6 +42,8 @@ jobs: keys: - 'v1-dependencies-{{ checksum "package.json" }}' - v1-dependencies- + - run: touch /usr/bin/docker && chmod +x /usr/bin/docker + - run: touch /usr/bin/docker-compose && chmod +x /usr/bin/docker-compose - run: npm run test workflows: version: 2 @@ -59,7 +61,7 @@ workflows: context: reaction-publish-semantic-release requires: - lint -# - test + - test filters: branches: only: trunk diff --git a/README.md b/README.md index b48037c..9d1ab38 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,19 @@ Before you can use the Open Commerce CLI, ensure you have all the base requireme Before you can use the Open Commerce CLI you need to install the command line tool: +### From NPM (Suggested method) +First install the cli by running: +``` +npm install -g @reactioncommerce/reaction-cli +``` + +You can test to see if it has worked here by running: + +``` +reaction help +``` +You should see the help text showing. + ### From a Cloned repo First clone the repo locally (substitute with whatever directory name you want to use) @@ -48,20 +61,6 @@ Then install the CLI globally (this may require `sudo` on some systems): npm install -g ``` - -### From NPM (Currently not available) -First install the cli by running: -``` -npm install -g @reactioncommerce/reaction-cli -``` - -You can test to see if it has worked here by running: - -``` -reaction help -``` -You should see the help text showing. - ## Creating a project ---