Skip to content

chore: add --skipLibCheck to tsc check action #119

chore: add --skipLibCheck to tsc check action

chore: add --skipLibCheck to tsc check action #119

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and test code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install packages
run: bun install
- name: TSC check
run: bun tsc --noEmit --skipLibCheck
- name: Run eslint
run: bun lint
- name: Test
run: bun test