From 7b5c8af1212bb9e750958d0ea80b6d5c2ed53a21 Mon Sep 17 00:00:00 2001 From: Joshua Kiwiet-Pantaleoni Date: Fri, 8 Dec 2023 10:08:28 -0800 Subject: [PATCH] build: run package build scripts before linting and testing --- .github/workflows/run-ui-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index e22e77de..5cbc2f4a 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -20,6 +20,8 @@ jobs: node-version: '16.x' - name: Install dependencies run: npm ci + - name: Build + run: npm run build - name: Run Lint run: npm run lint - name: Run Unit Tests