Add .circleci/config.yml

This commit is contained in:
Ethan Stubbs 2020-03-27 14:49:51 +00:00
parent 1a11eb2213
commit 325f268a99
1 changed files with 17 additions and 0 deletions

17
.circleci/config.yml Normal file
View File

@ -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