Skip to content

Commit

Permalink
Merge pull request #2 from vltansky/circleci-project-setup
Browse files Browse the repository at this point in the history
Add .circleci/config.yml
  • Loading branch information
vltansky authored Apr 26, 2020
2 parents b92eef3 + 2437365 commit 58b0231
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 58b0231

Please sign in to comment.