jormungandr-bite/.woodpecker/commitBuild.yml

17 lines
275 B
YAML
Raw Normal View History

2022-12-15 17:33:09 -07:00
pipeline:
build:
image: node:${NODE_VERSION}
commands:
- corepack enable
2022-12-26 16:24:19 -07:00
- yarn set version berry
2022-12-26 16:32:57 -07:00
- yarn install --immutable
2022-12-15 17:33:09 -07:00
- yarn build
matrix:
NODE_VERSION:
- 18.12.1
2022-12-26 16:24:19 -07:00
- latest
2022-12-15 17:33:09 -07:00
branches:
2022-12-18 11:41:11 -07:00
include: [ main, develop, feature/* ]