From e53fb7f8eda760b9d39479a2038720d54a434629 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 9 Sep 2025 23:47:47 -0400 Subject: ci: format --- .github/workflows/format.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/format.yml (limited to '.github/workflows') diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 000000000..84f82cafc --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,29 @@ +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: bun run format + env: + CI: true -- cgit v1.2.3