From 7740c3efa06fec2bc7824b90319db3292bdbf8cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mih=C3=A1ly=20Andr=C3=A1s=20T=C3=B3th?= Date: Thu, 17 Jul 2025 10:45:11 +0200 Subject: [PATCH] add workflows --- .gitea/workflows/node.js.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/node.js.yaml diff --git a/.gitea/workflows/node.js.yaml b/.gitea/workflows/node.js.yaml new file mode 100644 index 0000000..94c78da --- /dev/null +++ b/.gitea/workflows/node.js.yaml @@ -0,0 +1,15 @@ +name: Node.js CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.x' + - run: npm ci + - run: npm test