From d3034596b77d3983253d3558f0bf581e42db3171 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 11 Sep 2024 20:25:20 +0000 Subject: Update deploy workflow to include build step and testing Gitea Action --- .gitea/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/main.yml (limited to '.gitea') diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml new file mode 100644 index 0000000..6ee3279 --- /dev/null +++ b/.gitea/workflows/main.yml @@ -0,0 +1,14 @@ +name: Test +on: [push, pull_request] + +jobs: + test: + container: gitea/runner-images:ubuntu-latest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + - run: npm ci + - run: npm run check -- cgit v1.2.3