chore(deps-dev): bump the npm_and_yarn at /. security update group with 1 update #56
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: E2E test | |
on: | |
push: | |
branches: | |
- smoke-testing | |
pull_request: | |
types: [ opened, synchronize, reopened, labeled ] | |
branches: | |
- trunk | |
jobs: | |
e2e: | |
if: "${{ ( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'needs: e2e testing') ) || github.event_name == 'push' }}" | |
name: E2E Test | |
runs-on: ubuntu-latest | |
env: | |
PAYFAST_MERCHANT_ID: ${{secrets.PAYFAST_MERCHANT_ID}} | |
PAYFAST_MERCHANT_KEY: ${{secrets.PAYFAST_MERCHANT_KEY}} | |
PAYFAST_PASSPHRASE: ${{secrets.PAYFAST_PASSPHRASE}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Node cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
~/.npm | |
key: node-${{ hashFiles('package-lock.json') }} | |
- name: Node install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Install Playwright Browsers | |
run: npx playwright install chromium | |
- name: Install required WP plugins | |
run: | | |
URL_CONFIG="url.https://${{ secrets.BOT_GITHUB_TOKEN }}:[email protected]/.insteadOf [email protected]:" | |
git config --global $URL_CONFIG | |
npm run env:install-plugins | |
git config --global --unset $URL_CONFIG | |
- name: Setup WP environment | |
run: npm run env:start | |
- name: Run E2E Foundational Test | |
id: payfast_e2e_tests | |
if: ${{ github.event_name == 'pull_request' }} | |
run: npm run test:e2e-foundational | |
- name: Update Success Label | |
if: | | |
always() && | |
steps.payfast_e2e_tests.conclusion == 'success' | |
uses: actions/github-script@v6 | |
continue-on-error: true | |
with: | |
script: | | |
github.rest.issues.removeLabel({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: ['needs: e2e testing'] | |
}) | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['status: e2e tests passing'] | |
}) | |
- name: Update Failure Label | |
if: | | |
always() && | |
steps.payfast_e2e_tests.conclusion == 'failure' | |
uses: actions/github-script@v6 | |
continue-on-error: true | |
with: | |
script: | | |
github.rest.issues.removeLabel({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: ['needs: testing'] | |
}) | |
github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['status: e2e tests failing'] | |
}) | |
- name: Run E2E Smoke Test | |
if: ${{ github.event_name == 'push' }} | |
run: npm run test:e2e | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: tests/e2e/test-results/report | |
retention-days: 2 |