2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 09:00:28 +01:00

Merge pull request #3 from offen/vault

Scaffold express app for vault
This commit is contained in:
Frederik Ring 2019-04-19 20:54:08 -06:00 committed by GitHub
commit db6089a444
2 changed files with 22 additions and 1 deletions

View File

@ -37,8 +37,29 @@ jobs:
name: Run tests
command: make test-ci
vault:
docker:
- image: circleci/node:10
working_directory: ~/offen/vault
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-vault-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/vault/node_modules
key: offen-vault-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
workflows:
version: 2
build_and_test:
jobs:
- server
- vault

View File

@ -36,4 +36,4 @@ docker-compose run server make
### License
MIT © [Frederik Ring](https://www.frederikring.com), [Hendrik Niefeld](http://niefeld.com/)
MIT © offen