filebrowser/.circleci/config.yml
Henrique Dias fafc7384b6 see whats happens
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2019-05-11 20:19:18 +01:00

22 lines
378 B
YAML

version: 2
jobs:
lint:
docker:
- image: golangci/golangci-lint:v1.16
steps:
- checkout
- run: golangci-lint run -v
build-frontend:
docker:
- image: circleci/node
steps:
- run: cd frontend
- run: npm install
- run: npm run build
workflows:
version: 2
build-workflow:
jobs:
- lint
- build-frontend