From dd87fbf8ed759f25a3dbc606f257ddcef8afc039 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 17 Apr 2023 11:44:16 -0400 Subject: [PATCH] chore: Fix cron test workflow failing due to wrong reasons Signed-off-by: Sebastian Malton --- .github/workflows/cron-test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cron-test.yaml b/.github/workflows/cron-test.yaml index 812da0368f..2358a34e9a 100644 --- a/.github/workflows/cron-test.yaml +++ b/.github/workflows/cron-test.yaml @@ -50,5 +50,8 @@ jobs: retry_on: error command: npm ci + - name: Build library parts + run: run npm build -- --ignore open-lens + - run: npm run test:unit name: Run tests