From e6413ca55891874eb3ba150d40c588cacd611feb Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Tue, 1 Apr 2025 17:39:10 -0700 Subject: [PATCH] chore: add build as ci step in github workflow --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1687df964..b2607c647 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - name: Test + name: Test and Build runs-on: ubuntu-latest steps: @@ -32,6 +32,10 @@ jobs: NODE_OPTIONS: "--no-warnings" run: npm run test:coverage + - name: Build application + working-directory: ./sim + run: npm run build + - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: