Skip to content

Update workflows to use Bun #228

Update workflows to use Bun

Update workflows to use Bun #228

Workflow file for this run

name: Run Code Linter
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
biome:
runs-on: ubuntu-latest
container:
image: oven/bun:latest
steps:
- uses: actions/checkout@v4
with:
lfs: false
- name: Checkout LFS
run: git lfs pull
- name: Install Dependencies
run: bun install
working-directory: ./project
- name: Run Linter
run: bun run lint
working-directory: ./project