We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent becb851 commit 9af09a4Copy full SHA for 9af09a4
.circleci/config.yml
@@ -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
0 commit comments