From 20642f92967f4be091be4bf4d4fa337fba9c01c0 Mon Sep 17 00:00:00 2001 From: Ho Man Chan Date: Tue, 3 May 2022 22:35:33 -0400 Subject: [PATCH] Update github action standards and test to install node dependencies --- .github/workflows/standards-and-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/standards-and-tests.yml b/.github/workflows/standards-and-tests.yml index c283cd6..0c6b0ff 100644 --- a/.github/workflows/standards-and-tests.yml +++ b/.github/workflows/standards-and-tests.yml @@ -59,6 +59,12 @@ jobs: tools: phpcs, composer coverage: pcov + - name: Install Node dependencies + run: | + node -v + npm install + if: matrix.experimental == false + - name: Install PHP dependencies run: | export PATH="$HOME/.composer/vendor/bin:$PATH"