From 57b775aecfc4af34e4fee35bad81f4f1e22eed12 Mon Sep 17 00:00:00 2001 From: rangelovk Date: Wed, 8 Jul 2026 20:40:01 +0000 Subject: [PATCH] add test workflow on correct path --- .forgejo/workspace/test.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .forgejo/workspace/test.yaml diff --git a/.forgejo/workspace/test.yaml b/.forgejo/workspace/test.yaml new file mode 100644 index 0000000..109c083 --- /dev/null +++ b/.forgejo/workspace/test.yaml @@ -0,0 +1,28 @@ +name: CI +on: + push: + branches: [main] + pull_request: + +jobs: + test: + runs-on: docker + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 22 + + - name: Show environment + run: | + echo "Branch: ${{ github.ref_name }}" + echo "Commit: ${{ github.sha }}" + node --version + + - name: Run a fake test + run: | + echo "Pretending to test..." + test 1 -eq 1 && echo "OK ✅" \ No newline at end of file