From 20155d53f91f7890a4ecf459c4b2bd70011ca89f Mon Sep 17 00:00:00 2001 From: Mukesh Panchal Date: Fri, 26 Jan 2024 12:35:14 +0530 Subject: [PATCH] Add missing php setup step in workflow --- .github/workflows/php-test-standalone-plugins.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/php-test-standalone-plugins.yml b/.github/workflows/php-test-standalone-plugins.yml index 3c52086a46..410ae38028 100644 --- a/.github/workflows/php-test-standalone-plugins.yml +++ b/.github/workflows/php-test-standalone-plugins.yml @@ -58,6 +58,9 @@ jobs: steps: - uses: styfle/cancel-workflow-action@0.11.0 - uses: actions/checkout@v3 + - uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} - name: Setup Node.js (.nvmrc) uses: actions/setup-node@v3 with: @@ -65,6 +68,12 @@ jobs: cache: npm - name: npm install run: npm ci + - name: General debug information + run: | + npm --version + node --version + composer --version + php -v - name: Building standalone plugins run: npm run build-plugins - name: Running single site standalone plugin integration tests