From 603d9b3e3513bb53573b05ea2b3780e96d3b53af Mon Sep 17 00:00:00 2001 From: Blake Wilson Date: Mon, 25 Oct 2021 14:23:49 -0500 Subject: [PATCH] fix: e2e plugin npm deps install (#609) * fix: NPM deps install * Squashed commit of the following: commit 40d08d04467c1941a15a524107716738fe501055 Author: William Johnston Date: Fri Oct 22 13:47:00 2021 -0700 fix: exporting components from declaration commit 145ef995bd993f28571447c3bac926270a2eff88 Merge: 632a57f 4d7f981 Author: William Johnston Date: Fri Oct 22 10:46:13 2021 -0700 Merge branch 'canary' into next-refactor commit 632a57fc5e026198e8c2cfdd069e23c926283e92 Author: William Johnston Date: Fri Oct 22 10:05:38 2021 -0700 feat: (#591) adding changeset denoting breaking change commit 7f2a760e1532ad42380ea3222632f5ad699cf0c2 Author: William Johnston Date: Fri Oct 22 09:55:23 2021 -0700 feat: (#591) limiting root @faustjs/next exports to those needed by client commit b1ba602fd40248b75d4920d2eb8e6d7e19eeb5bf Author: William Johnston Date: Fri Oct 22 09:48:03 2021 -0700 feat: (#591) creating @faustjs/next/components export commit e4ad3eafc7ca18712326d9459cb2842423f7681d Author: William Johnston Date: Fri Oct 22 09:46:28 2021 -0700 feat: (#591) creating @faustjs/next/server export commit 69b63218e57c56ba8d87ba6e1b53f2df19f1c11c Author: William Johnston Date: Fri Oct 22 09:43:46 2021 -0700 feat: (#591) creating @faustjs/next/log export commit 9be7e1d352196be4db3d60915a7b1a1edf272817 Author: William Johnston Date: Fri Oct 22 09:41:23 2021 -0700 feat: (#591) creating @faustjs/next/config export commit 664bb903de2ae4aa7715a617bb953ea61c752488 Author: William Johnston Date: Fri Oct 22 09:38:01 2021 -0700 feat: (#591) creating @faustjs/next/utils export commit 38888e86be97cf7fccde658691cf9fbea59fc3b0 Author: William Johnston Date: Fri Oct 22 09:36:51 2021 -0700 feat: (#591) migrating to src/gqty and exposing @faustjs/next/client * fix: add build step * refactor: use dev:next:getting-started command * Revert "Squashed commit of the following:" This reverts commit d15356f6d5b7f1f36ed82edfbcb402c672aa6f84. --- .github/workflows/e2e-test-plugin.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-test-plugin.yml b/.github/workflows/e2e-test-plugin.yml index 50042632e..d25ff8b8b 100644 --- a/.github/workflows/e2e-test-plugin.yml +++ b/.github/workflows/e2e-test-plugin.yml @@ -11,15 +11,18 @@ jobs: uses: actions/setup-node@v2 with: node-version: '16' + - name: Install NPM Deps + run: | + rm package-lock.json + npm install + npm run build - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' - name: Setup Frontend - working-directory: examples/next/getting-started run: | - npm install - NEXT_PUBLIC_WORDPRESS_URL=http://localhost:8080 WP_HEADLESS_SECRET=00000000-0000-0000-0000-000000000001 npm run dev & + NEXT_PUBLIC_WORDPRESS_URL=http://localhost:8080 WP_HEADLESS_SECRET=00000000-0000-0000-0000-000000000001 npm run dev:next:getting-started & - name: Composer install working-directory: plugins/faustwp run: composer install