From edbd5b4f490ac81fd2eb39fc7e61d79123c4f715 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Mon, 21 Apr 2025 18:35:37 -0400 Subject: [PATCH] I would rather be playing Destiny 2. --- .gitlab-ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index be369a8..090a3c8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,8 +9,11 @@ stages: NodeJs Tests: stage: Tests image: node:22.14.0 - except: - - tags + rules: + - if: '$CI_PIPELINE_SOURCE == "push"' + changes: + - frontend/** + - frontend/.gitlab-ci.yml before_script: - cd frontend - npm install @@ -21,6 +24,11 @@ include: - project: 'shared/blueprints' file: 'jobs/golang-tests.yml' ref: master + rules: + - if: '$CI_PIPELINE_SOURCE == "push"' + changes: + - backend/** + - backend/.gitlab-ci.yml inputs: job_name: "Go Tests" working_directory: "backend"