mirror of
https://github.com/Imtjl/2nd-year-guide.git
synced 2026-09-12 19:50:58 +05:00
29 lines
476 B
YAML
29 lines
476 B
YAML
name: Prettier Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
prettier-check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Bun
|
|
uses: oven-sh/setup-bun@v1
|
|
with:
|
|
bun-version: latest
|
|
|
|
- name: Install dependencies
|
|
run: bun install
|
|
|
|
- name: Run Prettier
|
|
run: bun x prettier --check "**/*.md"
|