Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2E: Create a custom post type and use wp-scripts. #98

Merged
merged 10 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,25 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"
cache: "npm"

- name: Install dependencies
run: |
npm ci
composer install --prefer-dist --no-progress

- name: Npm build
run: npm run build

- name: Install wp-env
run: npm install -g @wordpress/env

- name: Start wp-env
run: wp-env start

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
run: npx playwright install --with-deps

- name: Run e2e tests
run: npm run test:e2e
Expand Down
Loading
Loading