From 3d15ee13c5775f28f6342c1cafe9e1ec909d74e5 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Sat, 29 Nov 2025 16:52:02 +0700 Subject: [PATCH] add prettier format check to pr --- .github/workflows/prettier.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/prettier.yml diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml new file mode 100644 index 0000000..d4692b3 --- /dev/null +++ b/.github/workflows/prettier.yml @@ -0,0 +1,13 @@ +name: "prettier" +on: [pull_request] + +jobs: + prettier: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: ./.github/actions/setup + + - name: Run prettier + run: bun format:check