Skip to content

Commit

Permalink
Merge pull request #105 from reactioncommerce/no-tests-test
Browse files Browse the repository at this point in the history
fix: try to get tests running in circle
  • Loading branch information
brent-hoover authored Aug 21, 2022
2 parents f33e500 + 1262402 commit 25d7ff3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -59,7 +61,7 @@ workflows:
context: reaction-publish-semantic-release
requires:
- lint
# - test
- test
filters:
branches:
only: trunk
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <my-directory> with whatever directory name you want to use)
Expand All @@ -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
---

Expand Down

0 comments on commit 25d7ff3

Please sign in to comment.