Files
node-minecraft-data/.circleci/config.yml
T
2018-08-26 16:55:54 +02:00

19 lines
459 B
YAML

version: 2
jobs:
build:
parallelism: 1
docker:
- image: circleci/node:10
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: git submodule sync --recursive && git submodule update --recursive --init
- run: npm i
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: npm test