Skip to content

Commit

Permalink
fix: added missing CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Grohs authored and Adam Grohs committed Apr 17, 2019
1 parent 6d6278e commit eac256b
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
version: 2
jobs:
build:
docker:
- image: 'circleci/node:latest'
steps:
- checkout
- run: yarn clean-install
- save_cache:
paths:
- node_modules
key: sync-moltin-to-shippo-{{ checksum "package.json" }}
test:
docker:
- image: 'circleci/node:latest'
steps:
- checkout
- restore_cache:
keys:
- sync-moltin-to-shippo-{{ checksum "package.json" }}
- run: yarn clean-install
- run: yarn test
release:
docker:
- image: 'circleci/node:latest'
steps:
- checkout
- restore_cache:
keys:
- sync-moltin-to-shippo-{{ checksum "package.json" }}
- run: yarn clean-install
- run: npx semantic-release
workflows:
version: 2
build_test_release:
jobs:
- build
- test:
requires:
- build
- release:
filters:
branches:
only:
- master
requires:
- test

1 comment on commit eac256b

@vercel
Copy link

@vercel vercel bot commented on eac256b Apr 17, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

The following environment variables can not be configured: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION

Please sign in to comment.