Files
scheduler-front/.gitlab-ci.yml

23 lines
378 B
YAML

stages:
- build
variables:
GIT_STRATEGY: clone
GIT_CHECKOUT: "true"
GIT_SSL_NO_VERIFY: "true"
before_script:
- git remote set-url origin http://192.168.219.107:8929/scheduler/front.git
- git config --global http.sslVerify false
build:
stage: build
image: node:25.1.0
tags:
- runner
script:
- node -v
- npm install
- npm run build
- ls