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 3631824 commit d8196a5Copy full SHA for d8196a5
.circleci/config.yml
@@ -0,0 +1,30 @@
1
+# Javascript Node CircleCI 2.0 configuration file
2
+#
3
+# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4
5
+version: 2
6
+jobs:
7
+ build:
8
+ docker:
9
+ # specify the version you desire here
10
+ - image: circleci/node:8.11
11
+
12
+ working_directory: ~/repo
13
14
+ steps:
15
+ - checkout
16
+ # Download and cache dependencies
17
+ - restore_cache:
18
+ keys:
19
+ - v1-dependencies-{{ checksum "package.json" }}
20
+ # fallback to using the latest cache if no exact match is found
21
+ - v1-dependencies-
22
23
+ - run: yarn install
24
25
+ - save_cache:
26
+ paths:
27
+ - node_modules
28
+ key: v1-dependencies-{{ checksum "package.json" }}
29
30
+ - run: yarn test:packages
0 commit comments