iceshrimp-legacy/.woodpecker/commitBuild.yml

20 lines
314 B
YAML
Raw Normal View History

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