[ACA-1283] CircleCI settings (#287)

This commit is contained in:
Denys Vuika
2018-04-05 21:39:59 +01:00
committed by GitHub
parent a73d3597a4
commit 8f3ccc7b38
2 changed files with 17 additions and 0 deletions

16
.circleci/config.yml Normal file
View File

@@ -0,0 +1,16 @@
version: 2
jobs:
build:
working_directory: ~/alfresco-content-app
docker:
- image: circleci/node:8-browsers
steps:
- checkout
- restore_cache:
key: alfresco-content-app-{{ .Branch }}-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: alfresco-content-app-{{ .Branch }}-{{ checksum "package.json" }}
paths:
- "node_modules"
- run: xvfb-run -a npm run test:ci