mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
28 lines
510 B
YAML
28 lines
510 B
YAML
image: node:latest
|
|
|
|
stages:
|
|
# - install
|
|
- test
|
|
|
|
# job-install:
|
|
# stage: install
|
|
# script:
|
|
# - npm install
|
|
# artifacts:
|
|
# untracked: false
|
|
# when: on_success
|
|
# access: all
|
|
# expire_in: "30 days"
|
|
# paths:
|
|
# - node_modules
|
|
|
|
|
|
|
|
job-test:
|
|
stage: test
|
|
script:
|
|
- npm install
|
|
- echo "ASSEMBLYAI_API_KEY=$apikey_assembly" > .env
|
|
- echo "GOOGLE_API_KEY=$apikey_gemini" >> .env
|
|
- echo "SAIA_API_KEY=$apikey_saia" >> .env
|
|
- npm test |