Skip to content

feat: improve optional configuration #44

feat: improve optional configuration

feat: improve optional configuration #44

Workflow file for this run

name: TSC lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
my-job:
name: Run Tests with Bun
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Install Bun using official setup-bun action
- name: Install Bun
uses: oven-sh/setup-bun@v2
# Install project dependencies (if any)
- name: Install dependencies
run: bun install
# Run the linter using Bun
- name: Run Tests
run: bun run lint