From 85fa493441eefaf41d8779f365fb8a8746008e8f Mon Sep 17 00:00:00 2001 From: Nathan Klick Date: Thu, 29 Feb 2024 01:55:33 -0600 Subject: [PATCH] chore: add compile stanza Signed-off-by: Nathan Klick --- .github/workflows/zxc-compile-code.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/zxc-compile-code.yaml b/.github/workflows/zxc-compile-code.yaml index 8c058eb4..498c83fc 100644 --- a/.github/workflows/zxc-compile-code.yaml +++ b/.github/workflows/zxc-compile-code.yaml @@ -79,6 +79,10 @@ jobs: id: npm-deps run: npm ci + - name: Compile Code + id: compile + run: npm run dev-build + - name: Check Code Style if: ${{ inputs.enable-code-style-check && !cancelled() && !failure() }} run: npm run lint