Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CircleCI fix #141

Open
wants to merge 1 commit into
base: circle-2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,11 @@ jobs:
- restore_cache:
key: example-cache-{{ checksum "example/package.json" }}
- run:
command: npm install -g gulp
command: npm run gulp -- ava
- run:
command: gulp ava
command: npm run gulp -- eslint
- run:
command: gulp eslint
- run:
command: cd example && gulp
command: cd example && npm run gulp -- default
- run:
command: sleep 10 && curl --retry 10 --retry-delay 5 -v http://localhost:3000/

Expand Down
1 change: 1 addition & 0 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Boilerplate for ReactJS project with hot code reloading",
"scripts": {
"start": "node server.js",
"gulp": "gulp $1",
"lint": "eslint src"
},
"repository": {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"build:lib": "babel src --out-dir lib",
"check": "npm run lint && npm run test",
"clean": "rimraf lib",
"gulp": "gulp $1",
"lint": "eslint src test examples",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
Expand Down