Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
Fix: CircleCI 2.0
Browse files Browse the repository at this point in the history
Removes continuous deploy
  • Loading branch information
jnoody committed Dec 19, 2018
1 parent cdc994b commit 6a679eb
Showing 1 changed file with 30 additions and 17 deletions.
47 changes: 30 additions & 17 deletions circle.yml
@@ -1,17 +1,30 @@
test:
override:
- npm run check

machine:
node:
version: v8.1.2

dependencies:
pre:
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc

deployment:
production:
branch: master
commands:
- ./deploy.sh
version: 2
jobs:
test:
working_directory: ~/FormidableLabs/rapscallion
environment:
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
docker:
- image: circleci/node:8.11.1
steps:
- checkout
- run: mkdir -p $CIRCLE_TEST_REPORTS
- run: npm install
- run: npm run check
- store_test_results:
path: /tmp/circleci-test-results
build:
working_directory: ~/FormidableLabs/rapscallion
docker:
- image: circleci/node:8.11.1
steps:
- checkout
- run: npm install
- run: npm run build
# Deployment coming soon...
workflows:
version: 2
test_and_build:
jobs:
- test
- build

0 comments on commit 6a679eb

Please sign in to comment.