add CI workflow - test actions
CI Test / hello (push) Failing after 1s

This commit is contained in:
benson
2026-07-19 22:54:53 +08:00
parent 23496a3c09
commit 07dc44d700
+19
View File
@@ -0,0 +1,19 @@
name: CI Test
on:
push:
branches: [main]
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Hello World
run: |
echo "Hello from Gitea Actions!"
echo "Current dir: $(pwd)"
echo "Node version: $(node --version)"
echo "Files: $(ls -la)"