Skip to content

Refactor build-test.yml to use 'bun-build' for TypeScript compilation #11

Refactor build-test.yml to use 'bun-build' for TypeScript compilation

Refactor build-test.yml to use 'bun-build' for TypeScript compilation #11

Workflow file for this run

name: Check Typescript
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
- uses: oven-sh/setup-bun@v2
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Install Dependencies
id: bun-install
run: bun install
- name: Build
id: bun-build
run: bun x tsc
- run: bun run build:js