Studio: Update wp-cli #372
Workflow file for this run
This file contains 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: Run E2E Tests | |
on: | |
pull_request: | |
jobs: | |
e2e: | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.9.0 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build App (without installer) | |
run: npm run package | |
- name: Run End-to-end Tests | |
uses: coactions/setup-xvfb@v1 | |
continue-on-error: true | |
with: | |
run: npm run e2e | |
- name: Archive Trace | |
uses: actions/upload-artifact@v2 | |
with: | |
path: trace.zip | |
if-no-files-found: ignore |