Moved npm install before test

This commit is contained in:
Torkel Ödegaard 2015-03-04 07:20:36 +01:00
parent d89c77af54
commit dfcf68f21d
2 changed files with 3 additions and 5 deletions

View File

@ -70,7 +70,6 @@ func main() {
case "test":
test("./pkg/...")
grunt("test")
case "latest":
version += "-" + getGitSha()

View File

@ -9,18 +9,17 @@ build:
steps:
# Workspace
- setup-go-workspace
- npm-install
- script:
name: build setup
code: |
go run build.go setup
# Build the project
- script:
name: build
name: go build
code: |
go run build.go clean test build
# frontend
- npm-install
# create packages
# create packages
- script:
name: create packages
code: |