Skip to content
This repository was archived by the owner on Apr 3, 2019. It is now read-only.

Commit 3e0de55

Browse files
committed
update ladash, remove jsdox, add .cicrleci
1 parent cb9fce3 commit 3e0de55

File tree

4 files changed

+364
-1072
lines changed

4 files changed

+364
-1072
lines changed

.circleci/config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
3+
version: 2
4+
jobs:
5+
copay:
6+
docker:
7+
- image: circleci/node:8.12.0
8+
- image: circleci/mongo:4.0.4
9+
10+
working_directory: ~/bws
11+
steps:
12+
- checkout
13+
# Download and cache dependencies
14+
- restore_cache:
15+
keys:
16+
- v1-dependencies-{{ checksum "package.json" }}
17+
# fallback to using the latest cache if no exact match is found
18+
- v1-dependencies-
19+
- run: npm ci
20+
- save_cache:
21+
paths:
22+
- node_modules
23+
key: v1-dependencies-{{ checksum "package.json" }}
24+
- run: npm test
25+
- run: npx codecov
26+
- store_artifacts:
27+
path: ./test
28+
- store_test_results:
29+
path: ./test
30+
31+
workflows:
32+
version: 2
33+
build_and_test:
34+
jobs:
35+
- copay

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)