mirror of
https://github.com/Drop-OSS/drop-docs.git
synced 2026-01-30 20:55:17 +01:00
24 lines
359 B
YAML
24 lines
359 B
YAML
image: node:18-alpine3.20
|
|
|
|
stages:
|
|
- test
|
|
- deploy
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- yarn install
|
|
- yarn build
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
|
|
|
|
create-pages:
|
|
stage: deploy
|
|
script:
|
|
- yarn install
|
|
- yarn build
|
|
- mv ./build public
|
|
pages: true
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|