forked from silverbux/laravel-angular-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
25 lines (25 loc) · 710 Bytes
/
wercker.yml
File metadata and controls
25 lines (25 loc) · 710 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
box: nodesource/trusty
build:
steps:
- npm-install
- script:
name: install test utilities
code: sudo npm install -g standard
- npm-test
- script:
name: echo nodejs information
code: |
echo "node version $(node -v) running"
echo "npm version $(npm -v) running"
- script:
name: 'npm: install gulp-cli'
code: 'npm install -g gulp-cli'
- script:
name: 'npm: install bower'
code: 'npm install -g bower'
- script:
name: 'bower: install dependencies'
code: 'bower install --allow-root --config.interactive=false'
- script:
name: 'App Build'
code: 'gulp --production'