Add first PR check

To be followed by tests and `npm run build`, obviously!
This commit is contained in:
Jack Jackson 2025-03-02 22:01:09 -08:00
parent 0f714976b0
commit a27d70ed75
2 changed files with 23 additions and 0 deletions

23
.gitea/workflows/pr.yaml Normal file
View File

@ -0,0 +1,23 @@
name: PR Checks
on:
pull_request:
branches:
- main
jobs:
pr-checks:
runs-on: ubuntu-latest
steps:
- name: Install Node
run: |
apt-get update && apt-get install -y nodejs
- name: Checkout
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super Linter
uses: super-linter/super-linter@v7.3.0