Skip to content

Commit

Permalink
1) Configure Circle CI to run tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobSpectre committed Jul 31, 2020
1 parent ac2002d commit b08753c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
version: 2.1
orbs:
node: circleci/[email protected]
node: circleci/[email protected]
jobs:
test:
executor: node/default
steps:
- checkout
- node/install:
install-yarn: true
node-version: latest
- node/install-packages:
cache-path: ~/hack-party/node_modules
override-ci-command: npm install
- run: npm run test:unit
workflows:
node-tests:
jobs:
- npm run test:unit
- test

0 comments on commit b08753c

Please sign in to comment.