From fa550ce547a9dfba98f13668cfca3f94d8279df8 Mon Sep 17 00:00:00 2001 From: Kevin Meinhardt Date: Thu, 14 Mar 2024 18:33:14 +0100 Subject: [PATCH] install dev deps --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d8e723..08025c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,7 @@ jobs: image: ${{ steps.build.outputs.tags }} run: | echo "Testing" + npm ci npm run test lint: runs-on: ubuntu-latest @@ -27,5 +28,6 @@ jobs: image: ${{ steps.build.outputs.tags }} run: | echo "Linting" + npm ci npm run lint