web/.woodpecker.yml

15 lines
241 B
YAML

pipeline:
install:
image: 'node:17.3.0'
commands:
- yarn install
test:
image: 'node:17.3.0'
comands:
# Lint the code
- yarn run lint
# Make sure the project can be built
- yarn run build