diff --git a/.github/workflows/test-runner.yaml b/.github/workflows/test-runner.yaml new file mode 100644 index 0000000..ceaf581 --- /dev/null +++ b/.github/workflows/test-runner.yaml @@ -0,0 +1,23 @@ +name: Test Runner + +on: + workflow_dispatch: + +jobs: + test: + runs-on: [self-hosted, local-ubuntu-latest] + timeout-minutes: 5 + + steps: + - name: Echo test + run: | + echo "Runner is working!" + echo "Hostname: $(hostname)" + echo "User: $(whoami)" + echo "PWD: $(pwd)" + echo "Node version: $(node --version)" + echo "NPM version: $(npm --version)" + + - name: List runner labels + run: | + echo "This job ran on a runner with labels: self-hosted, local-ubuntu-latest"