From 5bda912107f9b4c2a681b4c167dd580848b2cf45 Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Wed, 5 Jun 2024 09:20:49 +0200 Subject: [PATCH] ci: add build step (#906) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build was missing for some reason. 😱 --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c828c8c1..4047ca52b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,11 @@ jobs: with: node-version: ${{ matrix.node }} - - name: Run tests + - name: Build run: | npm ci + npm run build + + - name: Run tests + run: | npm t