From 34953dc3f025ca57e8164c14d2ac4735e3ea60ac Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Tue, 5 Sep 2023 09:34:37 +0200 Subject: [PATCH] ci: add build step in pre-release (#10845) Co-authored-by: Nikolay Vitkov <34244704+Lightning00Blade@users.noreply.github.com> --- .github/workflows/pre-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 50f88102..48bad31c 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -26,7 +26,10 @@ jobs: ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: Install dependencies run: npm ci - - name: Build + - name: Build all packages + run: | + npm run build + - name: Build docs env: PUBLISH: 1 run: |