web/.woodpecker.yml

16 lines
257 B
YAML
Raw Normal View History

2021-12-30 08:29:23 +01:00
pipeline:
install:
image: 'node:17.3.0'
commands:
- yarn install
test:
image: 'node:17.3.0'
group: test
comands:
# Lint the code
- yarn run lint
# Make sure the project can be built
- yarn run build