Skip to content

Upgrade to Typescript 5 (#32) #105

Upgrade to Typescript 5 (#32)

Upgrade to Typescript 5 (#32) #105

Workflow file for this run

name: "Test"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Biome
run: yarn run biome:ci
- name: Typecheck
run: yarn run typecheck
- name: Test
run: yarn run test