From 000379580f630a22809bd71434253e871c6828ef Mon Sep 17 00:00:00 2001 From: Pauljd Date: Tue, 8 Sep 2026 15:50:18 +0100 Subject: [PATCH] Add first Gitea Actions workflow --- .gitea/workflows/test.yml | 22 ++++++++++++++++++++++ README.md | 1 + 2 files changed, 23 insertions(+) create mode 100644 .gitea/workflows/test.yml create mode 100644 README.md diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..27daa00 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,22 @@ +name: Runner Test + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Say hello + run: echo "Hello from the PikaOS Gitea runner" + + - name: Show environment + run: | + uname -a + node --version + npm --version + + - name: Finish + run: echo "CI pipeline completed successfully" + diff --git a/README.md b/README.md new file mode 100644 index 0000000..057d18f --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Runner Test