From 2fa6f22361b273b683449cb6deb6f68301faa247 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 12 Jun 2026 16:54:53 +0700 Subject: [PATCH] Add .gitea/workflows/test.yml --- .gitea/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .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