Skip to content

Add ROADMAP.md with v0.2.5 planned features #14

Add ROADMAP.md with v0.2.5 planned features

Add ROADMAP.md with v0.2.5 planned features #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
run: npm install
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test
run: npm run test