added Dockerfile
This commit is contained in:
parent
2bb0c7eb4b
commit
53f264e63b
7 changed files with 902 additions and 446 deletions
20
.circleci/circle.yml
Normal file
20
.circleci/circle.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
working_directory: ~/app
|
||||
docker:
|
||||
- image: circleci/node:8
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
key: dependency-cache-{{ checksum "package-lock.json" }}
|
||||
- run:
|
||||
name: npm-install
|
||||
command: npm install
|
||||
- save_cache:
|
||||
key: dependency-cache-{{ checksum "package-lock.json" }}
|
||||
paths:
|
||||
- .node_modules
|
||||
- run:
|
||||
name: test
|
||||
command: npm test
|
Loading…
Add table
Add a link
Reference in a new issue