mirror of
https://github.com/barkeser2002/node-minecraft-data.git
synced 2026-09-25 12:46:17 +03:00
19 lines
459 B
YAML
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
|