chore: add pipeline
Some checks failed
Commit / ci (push) Successful in 35s
Release / publish (push) Failing after 2m21s

This commit is contained in:
2025-11-26 22:00:07 +01:00
parent c1521af887
commit 6d322f2056
6 changed files with 99 additions and 676 deletions

View File

@@ -0,0 +1,36 @@
name: Commit
on:
push:
# only trigger on branches, not on tags
branches: '**'
jobs:
# Job 1: Lint and Test (Type Check)
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
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