web/.woodpecker.yml

20 lines
312 B
YAML
Raw Permalink Normal View History

2021-12-30 08:29:23 +01:00
pipeline:
install:
image: 'node:17.3.0'
commands:
- yarn install
2021-12-30 12:41:28 +01:00
# This step makes sure the project properly builds.
2021-12-30 08:44:49 +01:00
build:
2021-12-30 08:29:23 +01:00
image: 'node:17.3.0'
2021-12-30 08:44:49 +01:00
group: test
commands:
2021-12-30 08:29:23 +01:00
- yarn run build
2021-12-30 08:44:49 +01:00
lint:
image: 'node:17.3.0'
group: test
commands:
- yarn run lint