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