diff --git a/.github/workflows/playground-tests-fix.yml b/.github/workflows/playground-tests-fix.yml index d6d183e..4f761f3 100644 --- a/.github/workflows/playground-tests-fix.yml +++ b/.github/workflows/playground-tests-fix.yml @@ -29,7 +29,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm install --legacy-peer-deps - name: Add WordPress Playground CLI to dependencies run: | diff --git a/.github/workflows/playground-tests.yml b/.github/workflows/playground-tests.yml index b0c7fc7..2a529f5 100644 --- a/.github/workflows/playground-tests.yml +++ b/.github/workflows/playground-tests.yml @@ -32,12 +32,12 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm install --legacy-peer-deps - name: Verify package.json and package-lock.json run: | echo "Verifying package.json and package-lock.json are in sync" - npm ci --dry-run + npm install --dry-run --legacy-peer-deps - name: Lint JavaScript files run: npm run lint:js @@ -57,7 +57,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm install --legacy-peer-deps - name: Add WordPress Playground CLI to dependencies run: | @@ -124,7 +124,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm install --legacy-peer-deps - name: Add WordPress Playground CLI to dependencies run: | diff --git a/.github/workflows/wordpress-tests.yml b/.github/workflows/wordpress-tests.yml index ce5e496..bf8e6b6 100644 --- a/.github/workflows/wordpress-tests.yml +++ b/.github/workflows/wordpress-tests.yml @@ -32,12 +32,12 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm install --legacy-peer-deps - name: Verify package.json and package-lock.json run: | echo "Verifying package.json and package-lock.json are in sync" - npm ci --dry-run + npm install --dry-run --legacy-peer-deps - name: Lint JavaScript files run: npm run lint:js @@ -66,7 +66,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci --legacy-peer-deps + run: npm install --legacy-peer-deps - name: Install WordPress Playground CLI run: npm install --save-dev @wp-playground/cli