From 89b953784b5192581f226293ea5cceaa52340fe0 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 0374b847517..60c2d23fe66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -619,6 +619,12 @@ jobs: cargo fmt -- --check cargo fmt --manifest-path xtask/Cargo.toml -- --check + - 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