testLicense: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
This commit is contained in:
parent
fafc7384b6
commit
b4ef32d734
@ -6,16 +6,30 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: golangci-lint run -v
|
- run: golangci-lint run -v
|
||||||
build-frontend:
|
build-node:
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node
|
- image: circleci/node
|
||||||
steps:
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: "Pull Submodules"
|
||||||
|
command: |
|
||||||
|
git submodule init
|
||||||
|
git submodule update --remote
|
||||||
- run: cd frontend
|
- run: cd frontend
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
|
build-node:
|
||||||
|
docker:
|
||||||
|
- image: circleci/golang
|
||||||
|
steps:
|
||||||
|
- run: go build
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build-workflow:
|
build-workflow:
|
||||||
jobs:
|
jobs:
|
||||||
- lint
|
- lint
|
||||||
- build-frontend
|
- build-node
|
||||||
|
- build-go:
|
||||||
|
requires:
|
||||||
|
- build-node
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user