From de5d5d2e7bdccecc8402a3e1fae64dd147521eb0 Mon Sep 17 00:00:00 2001 From: Tim Riley Date: Tue, 10 Oct 2023 23:37:42 +1100 Subject: [PATCH] Lint with Prettier in CI --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98cf54d..1693af3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,5 +35,8 @@ jobs: - name: Install dependencies run: npm ci + - name: Lint + run: npx prettier . --check + - name: Test run: make test