-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwercker.yml
46 lines (39 loc) · 1.17 KB
/
wercker.yml
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
41
42
43
44
45
46
box: node:argon
services:
- redis:3.0
build:
steps:
- script:
name: server
code: |
cd server
npm install
npm run lint
npm test
- script:
name: client
code: |
cd client
npm install
npm run bower
npm run build
- script:
name: echo nodejs information
code: |
echo "node version $(node -v) running"
echo "npm version $(npm -v) running"
after-steps:
- turistforeningen/slack-notifier:
url: $SLACK_WEBHOOK_URL
deploy:
steps:
- script:
name: docker hub build
code: |
curl --verbose \
-H "Content-Type: application/json" \
-d "{\"source_type\": \"Branch\", \"source_name\": \"$DOCKER_TRIGGER_BRANCH\"}" \
-X POST $DOCKER_TRIGGER_URL
after-steps:
- turistforeningen/slack-notifier:
url: $SLACK_WEBHOOK_URL