Skip to content

Fix GitHub workflow to deploy to GitHub Pages #5

Fix GitHub workflow to deploy to GitHub Pages

Fix GitHub workflow to deploy to GitHub Pages #5

Workflow file for this run

name: Continuous Integration
on:
push:
branches: ['trunk']
pull_request:
branches: ['trunk']
workflow_dispatch:
permissions: {}
concurrency:
group: 'ci-${{ github.ref }}'
cancel-in-progress: true
jobs:
run_static_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Check formatting
run: bun run format:check