From 00ffa52b2ea22df5696b09596bef4c896038e9a6 Mon Sep 17 00:00:00 2001 From: bekdan1988 <151082017+bekdan1988@users.noreply.github.com> Date: Mon, 19 Jan 2026 13:17:30 +0100 Subject: [PATCH] Add Prettier CI workflow for code formatting --- .github/workflows/prettier.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..8b62c5b6 --- /dev/null +++ b/.github/workflows/prettier.yml @@ -0,0 +1,17 @@ +name: autofix.ci +on: + pull_request: + push: +permissions: {} +jobs: + prettier: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: | + yarn + yarn prettier . --write + - uses: autofix-ci/action@v1 + with: + commit-message: "Apply Prettier format"