Skip to content

Commit

Permalink
ci(circle): add circleci config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
exactlyaron committed Apr 9, 2020
1 parent 3092b1d commit 857b3ab
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,27 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:lts
environment:
TZ: "Europe/London"
working_directory: ~/repo
steps:
- checkout
- run:
name: install
command: |
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm install
- run:
name: release
command: npx semantic-release
workflows:
version: 2
release:
jobs:
- build:
context: tymly_global
filters:
branches:
only: master

0 comments on commit 857b3ab

Please sign in to comment.