diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..0dceccc --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -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)"