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 8e7dc03 commit fa700e3Copy full SHA for fa700e3
.circleci/config.yml
@@ -0,0 +1,28 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ docker:
5
+ - image: circleci/node:10.9.0-browsers
6
+
7
+ working_directory: ~/repo
8
9
+ steps:
10
+ - checkout
11
+ - restore_cache:
12
+ keys:
13
+ - v1-dependencies-{{ checksum "package.json" }}
14
15
+ # fall back to using the latest cache if no exact match is found
16
+ - v1-dependencies-
17
18
+ # Install your dependencies
19
+ - run: yarn install
20
21
+ - save_cache:
22
+ paths:
23
+ - node_modules
24
+ key: v1-dependencies-{{ checksum "package.json" }}
25
26
+ # build the extension if required
27
+ # Run our test suite
28
+ - run: yarn test
0 commit comments