commit 2fa6f22361b273b683449cb6deb6f68301faa247 Author: admin Date: Fri Jun 12 16:54:53 2026 +0700 Add .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..d3c5de0 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,13 @@ +name: Test CI +on: [push] + +jobs: + build: + # Label này sẽ khớp với ubuntu-latest:docker://node:20-bullseye + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run a hello world + run: echo "Hello, workflow đang chạy thành công!" \ No newline at end of file