set up new workflow and migrate to .forgejo dir
Some checks failed
PR Gate / Checks (pull_request) Failing after 17s

This commit is contained in:
Benjamin Palko 2026-08-11 15:57:25 -04:00
parent c37955c51b
commit 00006a013d
5 changed files with 29 additions and 2 deletions

View file

@ -1,34 +0,0 @@
name: PR Gate
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
checks:
name: Checks
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/setup@v1
with:
version: 11
runtime: node@24
cache: true
- name: Lint
run: pnpm lint
- name: Svelte Check
run: pnpm check
- name: Test
run: pnpm run test:unit
- name: Build
run: pnpm run build