Changeset 61733
- Timestamp:
- 02/25/2026 02:27:54 PM (3 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
.github/workflows/reusable-end-to-end-tests.yml (modified) (1 diff)
-
.github/workflows/reusable-performance-test-v2.yml (modified) (1 diff)
-
.github/workflows/reusable-performance.yml (modified) (1 diff)
-
tools/local-env/scripts/install.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-end-to-end-tests.yml
r61663 r61733 101 101 - name: Install Playwright browsers 102 102 if: ${{ inputs.install-playwright }} 103 run: npx playwright install --with-deps 103 run: npx playwright install --with-deps chromium 104 104 105 105 - name: Build WordPress -
trunk/.github/workflows/reusable-performance-test-v2.yml
r61663 r61733 228 228 run: npm run env:cli -- plugin deactivate wordpress-importer --path="/var/www/${LOCAL_DIR}" 229 229 230 - name: Update permalink structure231 run: npm run env:cli -- rewrite structure '/%year%/%monthnum%/%postname%/' --path="/var/www/${LOCAL_DIR}"232 233 230 - name: Install additional languages 234 231 run: | -
trunk/.github/workflows/reusable-performance.yml
r61663 r61733 204 204 run: npm run env:cli -- plugin deactivate wordpress-importer --path="/var/www/${LOCAL_DIR}" 205 205 206 - name: Update permalink structure207 run: npm run env:cli -- rewrite structure '/%year%/%monthnum%/%postname%/' --path="/var/www/${LOCAL_DIR}"208 209 206 - name: Install additional languages 210 207 run: | -
trunk/tools/local-env/scripts/install.js
r61459 r61733 47 47 const installCommand = process.env.LOCAL_MULTISITE === 'true' ? 'multisite-install' : 'install'; 48 48 wp_cli( `core ${ installCommand } --title="WordPress Develop" --admin_user=admin --admin_password=password --admin_email=test@example.com --skip-email --url=http://localhost:${process.env.LOCAL_PORT}` ); 49 wp_cli( `rewrite structure '/%year%/%monthnum%/%postname%/'` ); 49 50 } ) 50 51 .catch( err => {
Note: See TracChangeset
for help on using the changeset viewer.