BlueWallet/.circleci/config.yml

24 lines
420 B
YAML
Raw Normal View History

2018-03-18 04:08:48 +01:00
version: 2
jobs:
build:
docker:
2020-03-16 20:36:09 +01:00
- image: circleci/node:10.16.3
2018-03-18 04:08:48 +01:00
working_directory: ~/repo
steps:
- checkout
2020-03-16 20:36:09 +01:00
- restore_cache:
key: node_modules-{{ checksum "package-lock.json" }}
2018-03-18 04:08:48 +01:00
- run: npm i
2020-03-16 20:36:09 +01:00
- save_cache:
kegit y: node_modules-{{ checksum "package-lock.json" }}
paths:
- node_modules
2018-03-18 04:08:48 +01:00
# run tests!
- run: npm run test