mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
25 lines
468 B
YAML
25 lines
468 B
YAML
stages:
|
|
- build
|
|
|
|
image: 'node:latest'
|
|
|
|
before_script:
|
|
- apt update -y
|
|
- corepack enable pnpm
|
|
|
|
build:pretty-check:
|
|
stage: build
|
|
script:
|
|
- pnpm i
|
|
- pnpm pretty-check
|
|
|
|
build:local:
|
|
stage: build
|
|
script:
|
|
- pnpm build-local
|
|
- mkdir .next/standalone/public && cp -aR public/* .next/standalone/public
|
|
- mkdir .next/standalone/public/_next && cp -aR .next/static/ .next/standalone/public/_next
|
|
artifacts:
|
|
paths:
|
|
- .next/standalone
|