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