Skip to content

Update scc.ts

Update scc.ts #100

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
name: CI Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install Deps
run: bun install --frozen-lockfile
- name: Check Lint & Format
run: bun run check
- name: Run Tests
run: bun test