๐Ÿ“ฆ robhogan / dynamodb-geo.js

๐Ÿ“„ circle.yml ยท 28 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28version: 2
executorType: docker
containerInfo:
  - image: rh389/node-base
  - image: deangiberson/aws-dynamodb-local

jobs:
  build:
    workDir: ~/workspace
    steps:
      - type: checkout
      - restore_cache:
          key: v1-yarn
      - type: shell
        shell: /bin/sh
        command: yarn install && yarn test
      - save_cache:
          key: v1-yarn-{{ checksum "yarn.lock" }}
          paths:
            - ~/workspace/node_modules

workflows:
  version: 2
  build:
    jobs:
      - build