forked from zendesk/sunshine-conversations-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
40 lines (33 loc) · 693 Bytes
/
circle.yml
File metadata and controls
40 lines (33 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
machine:
node:
version: 6.2.0
dependencies:
pre:
- npm install -g grunt-cli
test:
override:
- npm run test:ci
post:
- grunt build
general:
artifacts:
- "dist/"
deployment:
production:
branch: master
commands:
- echo "//registry.npmjs.org/:_authToken=$NPM_AUTH" > ~/.npmrc
- git config --global user.email "hello@smooch.io"
- git config --global user.name "Smooch"
- grunt publish
- grunt deploy
staging:
branch: integration
commands:
- npm run build:staging
- aws s3 cp dist/smooch.js $SK_JS_STAGING_PATH > /dev/null
experimental:
notify:
branches:
only:
- master