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 134df36 + 0e54451 commit b13bed4Copy full SHA for b13bed4
.circleci/config.yml
@@ -0,0 +1,29 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ docker:
5
+ - image: circleci/node:8-browsers
6
+
7
+ working_directory: ~/intercom-node
8
9
+ environment:
10
+ - YARN_VERSION: 1.7.0
11
12
+ steps:
13
+ - checkout
14
+ - run: export PATH="${PATH}:/home/circleci/.yarn/bin"
15
+ - run:
16
+ name: Install Yarn
17
+ command: |
18
+ if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
19
+ echo "Download and install Yarn."
20
+ curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
21
+ else
22
+ echo "The correct version of Yarn is already installed."
23
+ fi
24
+ - run: yarn
25
+ - run: yarn test
26
27
+notify:
28
+ webhooks:
29
+ - url: https://muster.intercom.io/circle_webhooks
0 commit comments