Bug Fix: parseAttribute function uses wrong default value. #498
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: End-to-End Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
admin: | |
name: E2E Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: ['18'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup environment to use the desired version of NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Installing NPM dependencies | |
run: | | |
npm install | |
- name: Starting the WordPress Environment | |
run: | | |
npm run wp-env start | |
- name: Running the tests | |
run: | | |
npm run test-e2e |