Skip to content

Merge pull request #2 from Jelloeater/claude/fix-workflow-gh-runners #3

Merge pull request #2 from Jelloeater/claude/fix-workflow-gh-runners

Merge pull request #2 from Jelloeater/claude/fix-workflow-gh-runners #3

Workflow file for this run

name: Format
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
format:
runs-on: [self-hosted, Linux, X64, prod]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check C++ formatting
run: make check-format
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Check TypeScript formatting
working-directory: src/typescript
run: npx @biomejs/biome format