This repository was archived by the owner on Mar 1, 2025. It is now read-only.
Refactor build-test.yml to use 'bun-build' for TypeScript compilation #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |