From 8ff7d86cbfca05ac0bf36dd90cc509cbb7fc99ff Mon Sep 17 00:00:00 2001 From: Chris Dill Date: Sun, 21 May 2023 21:04:28 +0100 Subject: [PATCH] Test build workflow --- .gitea/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 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..dd4f3b4 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,14 @@ +name: Build +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup node + uses: https://github.com/actions/setup-node@v3 + - name: Install node packages + run: npm ci + - name: Build project + run: npm run build