Skip to content

Add status badges

Add status badges #4

Workflow file for this run

name: Linting
on:
pull_request:
branches:
- '**'
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.33
- name: Install dependencies
run: bun install
- name: Run linter
run: bun run lint
- name: Check the build phase
run: bun run build