Added Prettier and ESLint to Github Action and re-executed lint #11
Workflow file for this run
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: Code quality | |
on: | |
pull_request: | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install packages | |
run: bun install | |
- name: Check Prettier formatting | |
run: bunx prettier --check "**/*.{md,mdx,astro}" | |
- name: Run ESLint | |
run: bunx eslint "src/**/*.{astro,}" | |
- name: Check Biome configuration | |
run: bunx @biomejs/biome check ./ |