ci: add package check workflow
Some checks are pending
Check / Node 22 (push) Waiting to run

This commit is contained in:
Vincent Koc 2026-04-26 10:56:18 -07:00
parent e60d4f3283
commit 7348aadd78
No known key found for this signature in database

26
.github/workflows/check.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Check
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
check:
name: Node 22
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Check
run: npm run check