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
|
2022-12-27 00:32:57 +01:00
|
|
|
- yarn install --immutable
|
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/* ]
|