Skip to content

Commit 9af09a4

Browse files
gengjiawenyyx990803
authored andcommitted
build: migrate to circle 2.0 (#98)
1 parent becb851 commit 9af09a4

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
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+
3+
jobs:
4+
build:
5+
docker:
6+
- image: vuejs/ci
7+
working_directory: ~/repo
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
keys:
12+
- dependency-cache-{{ checksum "package.json" }}
13+
- dependency-cache-
14+
- run: npm install
15+
- run: npm run test
16+
- run: npm run lint
17+
- save_cache:
18+
key: dependency-cache-{{ checksum "package.json" }}
19+
paths:
20+
- node_modules
21+
22+
23+
workflows:
24+
version: 2
25+
test:
26+
jobs:
27+
- build

circle.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)