From 8cb90bb8c3790441e9a25b4380bbf1e628a7a069 Mon Sep 17 00:00:00 2001 From: Dominik Halfkann Date: Fri, 15 Dec 2023 18:38:47 +0100 Subject: [PATCH] fix github deploy action --- .github/workflows/build-deploy.yml | 5 ++++- .github/workflows/build.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index dcc46235..5d53dc09 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -26,7 +26,10 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci && npm run postinstall + run: npm ci + + - name: Run postinstall + run: npm run postinstall - name: Run tests run: npm run test diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bb71a412..8a7fef4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,10 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci && npm run postinstall + run: npm ci + + - name: Run postinstall + run: npm run postinstall - name: Run tests run: npm run test