replace woodpecker with gitea actions
All checks were successful
PR / test-coverage (pull_request) Successful in 1m3s
PR / lint (pull_request) Successful in 1m15s

This commit is contained in:
Madison Grubb
2026-03-04 12:14:38 -05:00
parent 5e7369cd25
commit c7a9102d86
4 changed files with 128 additions and 80 deletions

43
.gitea/workflows/pr.yml Normal file
View File

@@ -0,0 +1,43 @@
name: PR
on:
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v6
- name: Setup Node
uses: https://github.com/actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
test-coverage:
name: test-coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v6
- name: Setup Node
uses: https://github.com/actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Test with coverage
run: npm run test:coverage