Files
ci-test/.gitea/workflows/ci.yml
T
benson 07dc44d700
CI Test / hello (push) Failing after 1s
add CI workflow - test actions
2026-07-19 22:54:53 +08:00

20 lines
364 B
YAML

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)"