chore: add pipeline
Some checks failed
PullRequest / publish (push) Failing after 2m32s

This commit is contained in:
2025-11-26 22:00:07 +01:00
parent 5ab04b9acb
commit 10f6d513c5
5 changed files with 94 additions and 6876 deletions

View File

@@ -0,0 +1,34 @@
name: Commit
on:
push:
commit:
jobs:
# Job 1: Lint and Test (Type Check)
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 25
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint (Prettier & ESLint)
run: pnpm lint
- name: Type Check (Svelte Check)
# Based on your package.json "check" script
run: pnpm check