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 ed2fb94 + a59a2d3 commit e83dffeCopy full SHA for e83dffe
.circleci/config.yml
@@ -1,4 +1,6 @@
1
-version: 2
+version: 2.1
2
+orbs:
3
+ slack: circleci/slack@3.4.2
4
jobs:
5
publish:
6
docker:
@@ -7,26 +9,32 @@ jobs:
7
9
- checkout
8
10
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
11
- run: npm publish
12
+ - slack/status
13
test:
14
15
- image: circleci/node:latest-browsers
16
steps:
17
18
- run: npm i -d
19
- run: npm run test
20
21
22
workflows:
23
version: 2
24
25
26
- test:
27
+ context:
28
+ - slack-notification
29
filters:
30
branches:
31
only:
32
- master
33
tagged-build:
34
35
- publish:
36
37
38
39
tags:
40
only: /v[0-9]+(\.[0-9]+)*/
0 commit comments