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 aff2e83 commit 863b19aCopy full SHA for 863b19a
.circleci/config.yml
@@ -0,0 +1,38 @@
1
+version: 2.1
2
+
3
+commands:
4
+ run-tests:
5
+ steps:
6
+ - checkout
7
+ - restore_cache:
8
+ key: dependency-cache-{{ checksum "package.json" }}
9
+ - run:
10
+ name: Installing Dependencies
11
+ command: npm install
12
+ - save_cache:
13
14
+ paths:
15
+ - ./node_modules
16
17
+ name: Lint Source
18
+ command: npm run test
19
20
+jobs:
21
+ node-latest:
22
+ docker:
23
+ - image: circleci/node:latest
24
25
+ - run-tests
26
27
+ node-lts:
28
29
+ - image: circleci/node:lts
30
31
32
33
+workflows:
34
+ node-multi-build:
35
+ jobs:
36
+ - node-latest
37
+ - node-lts
38
+ version: 2
.travis.yml
0 commit comments