Skip to content

Commit

Permalink
Add .circleci/config.yml (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Apr 27, 2020
1 parent e6c8081 commit 6be79a9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2.1
orbs:
node: circleci/node@1.1.6
jobs:
build-and-test:
executor:
name: node/default
steps:
- checkout
- node/with-cache:
steps:
- run: npm install
- run: npm test
workflows:
build-and-test:
jobs:
- build-and-test

0 comments on commit 6be79a9

Please sign in to comment.