Skip to content

✨ Add GitHub Actions workflows for CodeQL analysis, ESLint, and Prett… #1

✨ Add GitHub Actions workflows for CodeQL analysis, ESLint, and Prett…

✨ Add GitHub Actions workflows for CodeQL analysis, ESLint, and Prett… #1

Workflow file for this run

name: Prettier
on:
push:
branches: [develop, main]
pull_request:
branches: [develop, main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/checkout@v4
- name: Install modules
run: bun install --frozen-lockfile
- name: Run Prettier
run: bunx prettier . --check