This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Operations-Research-Tool/.gitlab-ci.yml
T
2024-10-14 20:09:17 +00:00

20 lines
374 B
YAML

image: node:20
# Cache für schnellere Builds
cache:
paths:
- node_modules/
- .next/cache/
before_script:
- npm ci
pages:
script:
- npm run build
- npm run export # Export für statische Seiten
artifacts:
paths:
- out # Das 'out'-Verzeichnis, wenn 'next export' verwendet wird
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH