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

Merge pull request #15 from offen/refactor-js

Clean up client side code, add tests
This commit is contained in:
Frederik Ring 2019-05-23 17:17:17 +02:00 committed by GitHub
commit 1bb7d9d3ff

View File

@ -100,6 +100,26 @@ jobs:
name: Run tests name: Run tests
command: npm test command: npm test
packages:
docker:
- image: circleci/node:10-browsers
working_directory: ~/offen/packages
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-packages-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/packages/node_modules
key: offen-packages-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
workflows: workflows:
version: 2 version: 2
build_and_test: build_and_test:
@ -108,3 +128,4 @@ workflows:
- vault - vault
- script - script
- auditorium - auditorium
- packages