Skip to content

refactor: kinks

refactor: kinks #53

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup NodeJs
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Setup Biome
uses: biomejs/setup-biome@v2
- run: npm ci
- run: biome ci .
- run: npm run test
- run: npm run typecheck
- run: npm run build