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

Commit

Permalink
Merge pull request #5 from brygrill/v1.2
Browse files Browse the repository at this point in the history
v1.2
  • Loading branch information
brygrill authored Jan 18, 2019
2 parents 77fc1f2 + 47f6c0b commit 76425fa
Show file tree
Hide file tree
Showing 29 changed files with 1,074 additions and 936 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-regenerator"
"@babel/plugin-transform-regenerator",
"babel-plugin-styled-components"
]
}
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
version: 2.0

jobs:
'lint':
docker:
- image: circleci/node:8.12
working_directory: ~/repo
steps:
- checkout
- run: yarn install
- run:
name: Run tests
command: yarn lint

'test':
docker:
- image: circleci/node:8.12
working_directory: ~/repo
steps:
- checkout
- run: yarn install
- run:
name: Run build
command: yarn test:ci

'build':
docker:
- image: circleci/node:8.12
working_directory: ~/repo
steps:
- checkout
- run: yarn install
- run:
name: Run build
command: yarn deploy

workflows:
version: 2
build:
jobs:
- 'lint'
- 'build'
- 'test'
Loading

0 comments on commit 76425fa

Please sign in to comment.