mirror of
https://gitlab.com/soapbox-pub/mkstack.git
synced 2025-08-26 12:39:22 +00:00
28 lines
353 B
YAML
28 lines
353 B
YAML
image: node:22
|
|
|
|
default:
|
|
interruptible: true
|
|
timeout: 1 minute
|
|
|
|
stages:
|
|
- test
|
|
- deploy
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- npm run test
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- npm run build
|
|
- rm -rf public
|
|
- mv dist public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
variables:
|
|
- $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME
|