mirror of
https://example.com
synced 2024-11-24 17:46:42 +09:00
19 lines
314 B
YAML
19 lines
314 B
YAML
pipeline:
|
|
build:
|
|
image: node:${NODE_VERSION}
|
|
commands:
|
|
- corepack enable
|
|
- yarn set version berry
|
|
- yarn install --frozen-lockfile
|
|
- yarn build
|
|
|
|
matrix:
|
|
NODE_VERSION:
|
|
- 18.12.1
|
|
- latest
|
|
|
|
branches:
|
|
include: [ main, develop, feature/* ]
|
|
|
|
depends_on:
|
|
- prSecurityCheck
|