From 2ef029297f00e3bf73bdd9c9cd624deab4fa3d27 Mon Sep 17 00:00:00 2001 From: nomi-nonsz Date: Sun, 8 Feb 2026 22:24:16 +0700 Subject: [PATCH] test pipeline --- .gitea/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..d1ceaea --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,21 @@ +name: CI Test + +on: + push: + branches: + - pipeline/test + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + container: + image: node:20 + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Check version + run: node -v