Files
grafana/Makefile
Carl Bergquist e61d049623 tech(build): replace npm with yarn (#7108)
* tech(build): replace npm with yarn

* tech(build): change node version for CI
2017-01-06 07:28:43 +01:00

29 lines
285 B
Makefile

all: deps build
deps-go:
go run build.go setup
deps-js:
yarn install
deps: deps-go deps-js
build-go:
go run build.go build
build-js:
npm run build
build: build-go build-js
test-go:
go test -v ./pkg/...
test-js:
npm test
test: test-go test-js
run:
./bin/grafana-server