Add Forgejo Actions #13

Merged
wonderfulfrog merged 20 commits from feat/workflow into main 2025-04-14 21:11:14 -07:00
Showing only changes of commit 62ae8afcf8 - Show all commits

View file

@ -0,0 +1,19 @@
name: Build and Deploy
on: [push]
jobs:
build_and_deploy:
runs-on: docker
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Build the website
run: npm run build