Skip to content

Fixed importing Prettier plugin #52

Fixed importing Prettier plugin

Fixed importing Prettier plugin #52

Workflow file for this run

on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Check and lint formatting
run: |
bun run check
bun run lint
- name: Build project
run: bun run build