From 6e7a9ae23408440298645f6810b300fd776a3d9d Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Fri, 10 Feb 2023 11:00:12 +0100 Subject: [PATCH] Fixes CI --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abeacf57..a195a9c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,5 +62,10 @@ jobs: - name: Run smoke test run: npm run smoketest + - name: Install website node modules + working-directory: website + run: yarn install --frozen-lockfile + - name: Build website - run: npm run build-website + working-directory: website + run: yarn run build