Bump webpack from 5.99.9 to 5.105.0 #44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches: | |
| - master | |
| jobs: | |
| e2e: | |
| name: E2E Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Node install | |
| run: | | |
| npm ci | |
| - name: Build | |
| run: | | |
| npm run build | |
| - name: Install Playwright Browsers | |
| run: npx playwright install chromium | |
| - name: Setup WP environment | |
| run: npm run env:start | |
| - name: Run E2E Test | |
| run: npm run test:e2e |