forked from sebbo2002/ical-generator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
63 lines (58 loc) · 930 Bytes
/
.gitlab-ci.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
stages:
- test
- publish
node_4:
image: node:4
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
script:
- npm install -g grunt-cli
- npm install
- npm test
node_6:
image: node:6
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
script:
- npm install -g grunt-cli
- npm install
- npm test
node_7:
image: node:7
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
script:
- npm install -g grunt-cli
- npm install
- npm test
node_8:
image: node:8
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
script:
- npm install -g grunt-cli
- npm install
- npm test
publish_github:
stage: publish
tags:
- matt.sebbo.net
- ssh
script:
- git push "https://${GITHUB_AUTH}@github.com/sebbo2002/ical-generator.git" --all