From 33b6ce006c672ab250cb63a704561f7d3b49fbe1 Mon Sep 17 00:00:00 2001 From: Marc Boehm Date: Mon, 25 Mar 2024 08:21:50 +0100 Subject: [PATCH] CAPAUT-353 Adjust test wf --- .gitea/workflows/test.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 3b470bd..d420b52 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -2,11 +2,14 @@ name: Test on: workflow-call: + inputs: + testvar: + required: false + type: string jobs: Build: - runs-on: nodejs-ubuntu + runs-on: nodejs-ubuntu steps: - name: Test step - run: | - echo "Hello World" \ No newline at end of file + run: echo "Hello World" \ No newline at end of file