Skip to content

Commit 781a93b

Browse files
committed
ci: add circleci config
1 parent 566d9b7 commit 781a93b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.circleci/config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
# specify the version you desire here
6+
- image: vuejs/ci
7+
8+
working_directory: ~/repo
9+
10+
steps:
11+
- checkout
12+
13+
# Download and cache dependencies
14+
- restore_cache:
15+
keys:
16+
- v1-dependencies-{{ checksum "yarn.lock" }}
17+
18+
- run: yarn install
19+
20+
- save_cache:
21+
paths:
22+
- node_modules
23+
- ~/.cache/yarn
24+
key: v1-dependencies-{{ checksum "yarn.lock" }}
25+
26+
# run tests!
27+
- run: yarn test

0 commit comments

Comments
 (0)