From 4b79e76ccfb31c442000d2a92c0d21539a8f1cbf Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Fri, 4 Oct 2024 11:30:45 -0400 Subject: [PATCH] test(ci): enforce fmt. of `*.{md,js,html,yml}` with `prettier` 3.3.3 This actually may enforce the format of other files than these, but it's unlikely. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb7acad4352..048fbf08d5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -628,6 +628,12 @@ jobs: - name: run `taplo fmt` run: taplo format --check --diff + - name: "Format `**/*.{md,js,html,yml}` files" + uses: creyD/prettier_action@v4.3 + with: + prettier_version: 3.3.3 + prettier_options: --write . + - name: Check for typos uses: crate-ci/typos@v1.24.6