Skip to content

Commit 25d7ff3

Browse files
authored
Merge pull request #105 from reactioncommerce/no-tests-test
fix: try to get tests running in circle
2 parents f33e500 + 1262402 commit 25d7ff3

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
keys:
4343
- 'v1-dependencies-{{ checksum "package.json" }}'
4444
- v1-dependencies-
45+
- run: touch /usr/bin/docker && chmod +x /usr/bin/docker
46+
- run: touch /usr/bin/docker-compose && chmod +x /usr/bin/docker-compose
4547
- run: npm run test
4648
workflows:
4749
version: 2
@@ -59,7 +61,7 @@ workflows:
5961
context: reaction-publish-semantic-release
6062
requires:
6163
- lint
62-
# - test
64+
- test
6365
filters:
6466
branches:
6567
only: trunk

README.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ Before you can use the Open Commerce CLI, ensure you have all the base requireme
2323

2424
Before you can use the Open Commerce CLI you need to install the command line tool:
2525

26+
### From NPM (Suggested method)
27+
First install the cli by running:
28+
```
29+
npm install -g @reactioncommerce/reaction-cli
30+
```
31+
32+
You can test to see if it has worked here by running:
33+
34+
```
35+
reaction help
36+
```
37+
You should see the help text showing.
38+
2639
### From a Cloned repo
2740

2841
First clone the repo locally (substitute <my-directory> with whatever directory name you want to use)
@@ -48,20 +61,6 @@ Then install the CLI globally (this may require `sudo` on some systems):
4861
npm install -g
4962
```
5063

51-
52-
### From NPM (Currently not available)
53-
First install the cli by running:
54-
```
55-
npm install -g @reactioncommerce/reaction-cli
56-
```
57-
58-
You can test to see if it has worked here by running:
59-
60-
```
61-
reaction help
62-
```
63-
You should see the help text showing.
64-
6564
## Creating a project
6665
---
6766

0 commit comments

Comments
 (0)