From c4451891d8d2ad1ff9c5584abf86f4bd762b2660 Mon Sep 17 00:00:00 2001 From: Jordan Jensen Date: Wed, 20 Mar 2024 13:29:07 -0700 Subject: [PATCH] Add check-format to vscode github workflow --- .github/workflows/vscode.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/vscode.yaml b/.github/workflows/vscode.yaml index a17a5b916..e9f9eb399 100644 --- a/.github/workflows/vscode.yaml +++ b/.github/workflows/vscode.yaml @@ -30,6 +30,7 @@ jobs: key: ${{ matrix.runner }}-vscode-${{ env.VSCODE_VERSION }}-${{ steps.get-date.outputs.date }} - run: just vscode configure - run: just vscode lint + - run: just vscode check-format - run: just vscode test - uses: actions/cache/save@v3 if: steps.cache.outputs.cache-hit != 'true' @@ -53,6 +54,7 @@ jobs: key: docker-vscode-${{ env.VSCODE_VERSION }}-${{ steps.get-date.outputs.date }} - run: just vscode configure - run: just vscode lint + - run: just vscode check-format - run: just vscode test - uses: actions/cache/save@v3 if: steps.cache.outputs.cache-hit != 'true'