From 32b65dc041b217b510505deb62f7f7f91bd7fbad Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 17 May 2024 11:06:32 +0100 Subject: [PATCH] Add CI --- .gitea/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..f41ea08 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,16 @@ +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: latest + - name: Install dependencies + run: npm ci + - name: Build site + run: npm run build