Fix GitHub workflow to deploy to GitHub Pages #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |