ci: add new required env variables

This commit is contained in:
Ody Machairas 2024-06-21 23:14:32 +02:00
parent c3cb2441b3
commit 1428ab981f

View file

@ -19,6 +19,8 @@ stages:
build:app:
stage: build
image: 'node:22.1.0-slim'
variables:
PUBLIC_KERNEL_ORIGIN: "http://kernel:8000"
rules:
- changes:
- app/**/*
@ -35,6 +37,8 @@ build:app:
typecheck:app:
stage: typecheck
image: 'node:22.1.0-slim'
variables:
PUBLIC_KERNEL_ORIGIN: "http://kernel:8000"
rules:
- changes:
- app/**/*
@ -52,6 +56,8 @@ typecheck:app:
lint:app:
stage: lint
image: 'node:22.1.0-slim'
variables:
PUBLIC_KERNEL_ORIGIN: "http://kernel:8000"
rules:
- changes:
- app/**/*
@ -69,6 +75,8 @@ lint:app:
test:app:
stage: test
image: 'node:22.1.0-slim'
variables:
PUBLIC_KERNEL_ORIGIN: "http://kernel:8000"
rules:
- changes:
- app/**/*