Skip to content

Plugin Update: July 2024 #37

Plugin Update: July 2024

Plugin Update: July 2024 #37

Workflow file for this run

# e2e test for Blogger to Wordpress
name: End-to-End Tests
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- master
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Run-wpe2e-TestCase:
# The type of runner that the job will run on
name: Playwright tests
runs-on: ubuntu-latest
env:
SHA: ${{ github.event.pull_request.head.sha }}
COMMIT_SHA: ${{ github.sha }}
PR_NUMBER: ${{ github.event.pull_request.number }}
working-directory: ./tests/e2e-playwright
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
# Check node version
- name: Current directory and listings
run: |
pwd
ls -al
# Install config site
- name: Install and config site
uses: docker://rtcamp/base-wo:v1.0.0
env:
NODE_VERSION: 16
RCLONE_CONFIG: ${{ secrets.RCLONE_CONFIG }}
- name: Archive HTML Report on failure
if: failure()
uses: actions/upload-artifact@v1
with:
name: report
path: ./tests/e2e-playwright/artifacts
- name: Cleanup
if: ${{ always() }}
uses: rtCamp/action-cleanup@master