Skip to content

feat: initial commit #5

feat: initial commit

feat: initial commit #5

Workflow file for this run

name: Test
on:
push:
branches:
- main
- 1.x
pull_request:
branches:
- main
- 1.x
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Biome
run: pnpm biome ci .
- name: Test
run: pnpm -r test
- name: Type Check
run: pnpm -r tsc --noEmit