From 2e35e7ceb1aa81c7bd936bc59b4b1c0b2691dc72 Mon Sep 17 00:00:00 2001 From: Alec Geatches Date: Thu, 2 Jan 2025 15:25:44 -0700 Subject: [PATCH] Fix missing `run` step in integration test YML --- .github/workflows/integration-tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 62f4f96c..c77935af 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -30,12 +30,10 @@ jobs: cache: npm - name: Npm install - run: | - npm ci + run: npm ci - name: Start up WordPress environment - run: | - npm run dev:build + run: npm run dev:build - name: Run Integration tests - npm run test:integration + run: npm run test:integration