commit 3c014c2d69040fbc82482563ae251e075ea1900c Author: NEW_GIL_HOME\hyeon Date: Sat Jan 31 21:55:47 2026 +0900 Add GitHub Actions workflow for testing diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..7480698 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,18 @@ +name: Test Runner + +on: + push: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Hello + run: | + echo "🎉 Runner 정상 작동!" + echo "Node version: $(node -v)" + npm -v