firefish/.woodpecker/commitBuild.yml
2022-12-18 19:41:59 +01:00

18 lines
294 B
YAML

pipeline:
build:
image: node:${NODE_VERSION}
commands:
- corepack enable
- yarn install
- yarn build
environment:
- YARN_ENABLE_IMMUTABLE_INSTALLS=false
matrix:
NODE_VERSION:
- 18.12.1
- 19.2.0
branches:
include: [ main, develop, feature/* ]