UNPKG

307 BYAMLView Raw
1version: 2.1
2orbs:
3 node: circleci/node@1.1.6
4jobs:
5 build-and-test:
6 executor:
7 name: node/default
8 steps:
9 - checkout
10 - node/with-cache:
11 steps:
12 - run: npm install
13 - run: npm test
14workflows:
15 build-and-test:
16 jobs:
17 - build-and-test