20 lines
364 B
YAML
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)"
|