From 2fd12f2934324eeae6f5d5d7c7b0b1c04b1d6775 Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Sun, 12 May 2024 18:47:26 +0200 Subject: [PATCH] ci: add build step --- .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