From 916287c72a1bd00baa37c2dbb443a4d2ad4133d9 Mon Sep 17 00:00:00 2001 From: nh9961 Date: Sat, 4 Jul 2026 23:36:03 +0000 Subject: [PATCH] ci: add build & lint workflow --- .gitea/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..8feb5a1 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,15 @@ +name: Build & Lint + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm run lint + - run: npm run build