Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

feat: add model pricing #9

feat: add model pricing

feat: add model pricing #9

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Bun version
id: bun-version
run: echo "version=$(cat .bunversion | sed 's/bun-v//')" >> $GITHUB_OUTPUT
- uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ steps.bun-version.outputs.version }}
- name: Install dependencies
run: bun install
- name: TypeScript type check
run: bun run tsc
- name: Run tests
run: bun test