Merge pull request 'chore: add Gitea CI workflow' (#76) from chore/add-ci into main
CI / check (push) Failing after 16s

chore: add Gitea CI workflow (#76)
This commit was merged in pull request #76.
This commit is contained in:
2026-06-04 09:38:05 +00:00
+31
View File
@@ -0,0 +1,31 @@
name: CI
on:
push:
branches: ['*']
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- run: pnpm install
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run check
- name: Test
run: pnpm run test