-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update circle config.yml to 2.0 (#182)
- Loading branch information
Showing
2 changed files
with
30 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
version: 2 | ||
jobs: | ||
test-node: | ||
docker: | ||
- image: circleci/node:6.14-stretch | ||
steps: | ||
- checkout | ||
- run: "yarn install" | ||
- run: "yarn lint:ci" | ||
- run: "yarn build" | ||
- run: "yarn test:node -- --maxWorkers=4" | ||
test-web: | ||
docker: | ||
- image: circleci/node:6.14-stretch | ||
steps: | ||
- checkout | ||
- run: "yarn install" | ||
# For some reason phantomjs-prebuild is failing w/yarn, but npm installing works | ||
- run: "npm install phantomjs-prebuilt" | ||
# Switch to 7 and lint | ||
- run: "yarn test:web -- --maxWorkers=4" | ||
- run: "yarn build:web -- --maxWorkers=4" | ||
|
||
|
||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- test-node | ||
- test-web |
This file was deleted.
Oops, something went wrong.