Skip to content

.github/workflows: Migrate workflows to Blacksmith runners #4

.github/workflows: Migrate workflows to Blacksmith runners

.github/workflows: Migrate workflows to Blacksmith runners #4

Workflow file for this run

name: Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
Check:
name: Check
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.8
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Biome check
run: bun run check
- name: TypeScript typecheck
run: bun run typecheck