Shell-only workflow, no external actions
All checks were successful
Simple Shell Test / test (push) Successful in -1s

This commit is contained in:
2026-05-24 12:36:35 +02:00
parent b2a0de7ece
commit 89d748b19f

View File

@@ -1,4 +1,4 @@
name: Simple CI Test name: Simple Shell Test
on: on:
push: push:
branches: [main] branches: [main]
@@ -7,11 +7,10 @@ jobs:
test: test:
runs-on: linux runs-on: linux
steps: steps:
- name: Checkout - name: System check
uses: actions/checkout@v4
- name: Echo test
run: | run: |
echo "Hello from Gitea Runner!" echo "=== System Info ==="
echo "Workspace: $(pwd)" uname -a
ls -la echo "Node: $(which node 2>/dev/null || echo 'NOT FOUND')"
echo "Path: $PATH"
ls /usr/local/bin/