vue3-yuanma/.circleci/config.yml

30 lines
585 B
YAML
Raw Normal View History

2019-08-25 10:22:27 +08:00
version: 2
jobs:
build:
docker:
- image: vuejs/ci
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "yarn.lock" }}
- v1-dependencies-
2019-10-15 02:51:39 +08:00
- run:
name: Installing Dependencies
command: yarn --frozen-lockfile
2019-08-25 10:22:27 +08:00
- save_cache:
paths:
- node_modules
- ~/.cache/yarn
key: v1-dependencies-{{ checksum "yarn.lock" }}
2019-10-15 02:51:39 +08:00
- run:
name: Running Tests
command: yarn test --ci --runInBand