mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
20 lines
314 B
YAML
20 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
|