From c92767eeb2422c4de55cd074646a091783b16b9f Mon Sep 17 00:00:00 2001 From: Derek Croote Date: Tue, 22 Aug 2023 22:58:06 -0700 Subject: [PATCH] ci: run yarn build during CI --- .github/workflows/continuous-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-build.yml b/.github/workflows/continuous-build.yml index 1e0792d4..88bf9fe7 100644 --- a/.github/workflows/continuous-build.yml +++ b/.github/workflows/continuous-build.yml @@ -45,6 +45,9 @@ jobs: - name: Install Dependencies run: yarn install --frozen-lockfile + - name: Run Build + run: yarn build + - name: Run Linting Checks run: yarn lint @@ -60,4 +63,3 @@ jobs: needs: [documentation, lint-test] steps: - run: exit 0 -