Skip to content

Fix the phpcs warnings for class-module #277

Fix the phpcs warnings for class-module

Fix the phpcs warnings for class-module #277

name: E2E and JS tests
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: true
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up NodeJS 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Build Edit Flow
run: |
npm ci
npm run build
- name: Install WordPress with wp-env
run: npm run wp-env start
- name: Run Lint JS
run: npm run lint-js
- name: Run Jest tests
run: npm run test-jest
- name: Run E2E tests
run: npm run test-e2e