-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwercker.yml
More file actions
50 lines (48 loc) · 994 Bytes
/
wercker.yml
File metadata and controls
50 lines (48 loc) · 994 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
41
42
43
44
45
46
47
48
49
50
box: node:latest
no-response-timeout: 15
build:
steps:
- npm-install:
cwd: app/
- npm-test:
cwd: app/
- script:
name: running linter
code: |
cd app
npm run lint
- script:
name: build
code: |
cd app
npm run build
deploy-production:
steps:
- npm-install:
cwd: app/
- script:
name: global install flightplan
code: |
npm i -g flightplan
- script:
name: deploy to production
code: |
cd app
ls -la
which fly || echo "?"
fly production && echo "ran and exited successfully" || echo "$?"
deploy-staging:
steps:
- npm-install:
cwd: app/
- script:
name: global install flightplan
code: |
npm i -g flightplan
- script:
name: deploy to staging
code: |
cd app
ls -la
which fly || echo "?"
fly staging && echo "ran and exited successfully" || echo "?"