flaschengeist-frontend/.woodpecker/lint.yml

17 lines
254 B
YAML
Raw Normal View History

2021-12-08 14:17:25 +00:00
pipeline:
2021-12-08 14:28:59 +00:00
install:
2021-12-08 14:17:25 +00:00
image: node:lts-alpine
commands:
- yarn install
2021-12-08 14:28:59 +00:00
lint:
image: node:lts-alpine
commands:
2021-12-08 14:17:25 +00:00
- yarn lint
2021-12-08 14:28:59 +00:00
build:
image: node:lts-alpine
commands:
2021-12-08 14:32:31 +00:00
- yarn quasar build
2021-12-08 14:28:59 +00:00
branches: [main, develop]