Add simple test job to verify runner

This commit is contained in:
Joan
2025-11-27 17:40:28 +01:00
parent 0fcdd1c070
commit e5029c558b

View File

@@ -1,4 +1,5 @@
stages: stages:
- test
- build-web - build-web
- build-desktop - build-desktop
@@ -7,6 +8,17 @@ variables:
npm_config_cache: "$CI_PROJECT_DIR/.npm" npm_config_cache: "$CI_PROJECT_DIR/.npm"
ELECTRON_CACHE: "$CI_PROJECT_DIR/.cache/electron" ELECTRON_CACHE: "$CI_PROJECT_DIR/.cache/electron"
# Simple test job - NO TAGS - should run on any runner
test:runner:
stage: test
image: alpine:latest
script:
- echo "✅ Runner is working!"
- echo "Runner can execute jobs successfully"
- ls -la
rules:
- if: '$CI_PIPELINE_SOURCE == "push"'
# Cache node_modules and electron cache # Cache node_modules and electron cache
cache: cache:
key: ${CI_COMMIT_REF_SLUG} key: ${CI_COMMIT_REF_SLUG}