Skip to content

Implements RFC9535

Implements RFC9535 #30

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Build
run: npm run build