Files
opencode/.github/workflows/format.yml
Dax Raad 8c7fee7840 ci: fix
2025-09-09 23:48:35 -04:00

30 lines
538 B
YAML

name: Format
on:
push:
pull_request:
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.2.19
- name: Install dependencies
run: bun install
- name: Run format
run: ./script/format.ts
env:
CI: true