mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 09:50:22 +00:00
37 lines
687 B
YAML
37 lines
687 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:7.10
|
|
|
|
working_directory: ~/repo
|
|
|
|
steps:
|
|
- checkout
|
|
|
|
- restore_cache:
|
|
keys:
|
|
- v1-dependencies-{{ checksum "package.json" }}
|
|
- v1-dependencies-
|
|
|
|
- run:
|
|
name: install
|
|
command: npm install
|
|
|
|
- run:
|
|
name: globals
|
|
command: sudo npm install karma -g
|
|
|
|
- run:
|
|
name: test
|
|
command: npm run unit
|
|
|
|
- store_artifacts:
|
|
path: test-results.xml
|
|
prefix: tests
|
|
|
|
- save_cache:
|
|
paths:
|
|
- node_modules
|
|
key: v1-dependencies-{{ checksum "package.json" }}
|