Skip to content

Bump webpack from 5.99.9 to 5.105.0 #44

Bump webpack from 5.99.9 to 5.105.0

Bump webpack from 5.99.9 to 5.105.0 #44

Workflow file for this run

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