chore(config): Added base layout definitions
Some checks failed
/ build (push) Failing after 26s

This commit is contained in:
Daniël Groothuis
2025-10-31 16:07:19 +01:00
parent df6eb44bcc
commit 8bb0667b18

42
.gitea/workflows/ci.yaml Normal file
View File

@@ -0,0 +1,42 @@
---
on:
push:
branches:
- main
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setuo-node@v4
with:
node-version: '22'
check-latest: true
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Run checks
run: npm run check
- name: Run tests
run: npm test
- name: Ensure build and bundle info
run: npx quartz build --bundleInfo