1
Fork 1

Add CI
All checks were successful
/ build (push) Successful in 35s

This commit is contained in:
Jake Howard 2024-05-17 11:06:32 +01:00
parent 6d94ec09e4
commit 32b65dc041
Signed by: jake
GPG key ID: 57AFB45680EDD477

16
.gitea/workflows/ci.yml Normal file
View file

@ -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