-
Notifications
You must be signed in to change notification settings - Fork 0
/
wercker.yml
80 lines (63 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
box: node:argon
build:
services:
- mongo:3.0
- redis:3
steps:
- script:
name: echo nodejs information
code: |
echo "node version $(node -v) running"
echo "npm version $(npm -v) running"
- npm-install
- script:
name: lint
code: npm run lint
- script:
name: grunt build
code: npm run grunt
- npm-test
- script:
name: test coverage
code: |
npm run cover
cat ./coverage/lcov.info | npm run codacy-coverage
# - script:
# name: node security project
# code: |
# npm run nsp
after-steps:
- turistforeningen/slack-notifier:
url: $SLACK_WEBHOOK_URL
docker:
steps:
- script:
name: docker hub build
code: |
curl --verbose \
-H "Content-Type: application/json" \
-d "{\"source_type\": \"Branch\", \"source_name\": \"$WERCKER_GIT_BRANCH\"}" \
-X POST $DOCKER_TRIGGER_URL
after-steps:
- turistforeningen/slack-notifier:
url: $SLACK_WEBHOOK_URL
npm:
steps:
# Rebuild node_modules to fix broken symlinks
# https://github.com/wercker/docs/issues/310
- script:
name: npm rebuild
code: npm rebuild
- script:
name: semantic release pre
code: npm run semantic-release -- pre
- turistforeningen/npm-publish
- script:
name: semantic release post
code: npm run semantic-release -- post
- script:
name: greenkeeper postpublish
code: npm run greenkeeper-postpublish
after-steps:
- turistforeningen/slack-notifier:
url: $SLACK_WEBHOOK_URL