docs: backfill changelog and add release verification

This commit is contained in:
Ivan Pereira
2026-07-14 12:06:42 +01:00
parent 838644734f
commit 5a3a1e82bf
4 changed files with 53 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
- name: Install dependencies
run: npm ci
- name: Typecheck and test
run: npm run typecheck && npm test