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 29c4dda commit 95c55caCopy full SHA for 95c55ca
.circleci/config.yml
@@ -25,6 +25,16 @@ jobs:
25
- restore_cache:
26
key: dependency-cache-{{ checksum "yarn.lock" }}
27
- run: yarn test:unit
28
+ integration_test:
29
+ docker:
30
+ - image: circleci/node:14-browsers
31
+ working_directory: ~/intercom-node
32
+ steps:
33
+ - checkout
34
+ - restore_cache:
35
+ key: dependency-cache-{{ checksum "yarn.lock" }}
36
+ - export $API_TOKEN
37
+ - run: yarn test:integration
38
39
workflows:
40
version: 2
@@ -34,6 +44,11 @@ workflows:
44
- unit_test:
45
requires:
46
- build
47
+ - integration_test_approval:
48
+ type: approval
49
+ - integration_test:
50
+ requires:
51
+ - integration_test_approval
52
53
notify:
54
webhooks:
0 commit comments