Skip to content

Commit e83dffe

Browse files
Merge pull request #17 from supertokens/slack-update
slack notification update for circleci integration
2 parents ed2fb94 + a59a2d3 commit e83dffe

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
version: 2
1+
version: 2.1
2+
orbs:
3+
slack: circleci/slack@3.4.2
24
jobs:
35
publish:
46
docker:
@@ -7,26 +9,32 @@ jobs:
79
- checkout
810
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
911
- run: npm publish
12+
- slack/status
1013
test:
1114
docker:
1215
- image: circleci/node:latest-browsers
1316
steps:
1417
- checkout
1518
- run: npm i -d
1619
- run: npm run test
20+
- slack/status
1721

1822
workflows:
1923
version: 2
2024
test:
2125
jobs:
2226
- test:
27+
context:
28+
- slack-notification
2329
filters:
2430
branches:
2531
only:
2632
- master
2733
tagged-build:
2834
jobs:
2935
- publish:
36+
context:
37+
- slack-notification
3038
filters:
3139
tags:
3240
only: /v[0-9]+(\.[0-9]+)*/

0 commit comments

Comments
 (0)