From ed7a5aecd93dd684d12d729bb2fd7a797a2381ba Mon Sep 17 00:00:00 2001 From: parbez Date: Fri, 25 Oct 2024 23:32:42 +0530 Subject: [PATCH] ci: fix build --- .github/workflows/continuous-integration.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 26fb42e..083764e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -23,6 +23,8 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Install Dependencies run: yarn --immutable + - name: Build + run: yarn build - name: Run ESLint run: yarn lint --fix=false @@ -42,5 +44,7 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Install Dependencies run: yarn --immutable + - name: Build + run: yarn build - name: Typecheck And Build Code run: yarn typecheck && yarn build