1
0
Fork 1
mirror of https://example.com synced 2024-11-24 20:36:38 +09:00
firefish/.woodpecker/commitBuild.yml

20 lines
308 B
YAML
Raw Normal View History

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