From 47f12bb78473417bc9cafd71b486b33c115258e7 Mon Sep 17 00:00:00 2001 From: Dallas Hoffman Date: Wed, 30 Oct 2024 21:34:45 -0400 Subject: [PATCH] Add formatting check to PR workflow --- .github/workflows/test-pr.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index f4e4a7c..fdecf8e 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -15,3 +15,14 @@ jobs: run: 'npm ci' - name: Run Tests run: 'npm run test:ci' + format: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v4 + - name: Install Dependencies + run: 'npm ci' + - name: Check Formatting + run: 'npm run format:check'