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.
2 parents f5d3c08 + 3f9ece4 commit 75a9951Copy full SHA for 75a9951
.circleci/config.yml
@@ -0,0 +1,19 @@
1
+# Javascript Node CircleCI 2.0 configuration file
2
+# Check https://circleci.com/docs/2.0/language-javascript/ for more details
3
+version: 2
4
+jobs:
5
+ build:
6
+ docker:
7
+ - image: circleci/node:8
8
+ steps:
9
+ - checkout
10
+ - restore_cache:
11
+ keys:
12
+ - v1-dependencies-{{ checksum "package.json" }}
13
+ - v1-dependencies-
14
+ - run: yarn install
15
+ - save_cache:
16
+ paths:
17
+ - node_modules
18
+ key: v1-dependencies-{{ checksum "package.json" }}
19
+ - run: yarn test
0 commit comments