woocommerce/.github/workflows/pr-smoke-test.yml

104 lines
4.0 KiB
YAML
Raw Normal View History

2021-09-20 19:05:45 +00:00
name: Run smoke tests against pull request.
on:
pull_request:
2021-11-03 01:08:32 +00:00
branches:
- trunk
types:
- labeled
jobs:
prcheck:
name: Smoke test a pull request.
if: "${{ contains(github.event.label.name, 'run: smoke tests') }}"
runs-on: ubuntu-18.04
steps:
- name: Create dirs.
run: |
mkdir -p code/woocommerce
mkdir -p package/woocommerce
mkdir -p tmp/woocommerce
mkdir -p node_modules
- name: Checkout code.
uses: actions/checkout@v2
with:
2021-11-03 01:08:32 +00:00
path: package/woocommerce
- name: Install prerequisites.
2021-11-03 01:08:32 +00:00
working-directory: package/woocommerce/plugins/woocommerce
id: installation
run: |
2021-11-03 01:08:32 +00:00
npm install -g pnpm
pnpm install
2021-11-25 14:24:35 +00:00
pnpm nx composer-install-no-dev woocommerce
pnpm nx build-assets woocommerce
2021-11-17 17:11:53 +00:00
pnpm install jest
- name: Run smoke test.
2021-11-03 01:26:44 +00:00
working-directory: package/woocommerce/plugins/woocommerce
if: steps.installation.outcome == 'success'
env:
SMOKE_TEST_URL: ${{ secrets.SMOKE_TEST_URL }}
SMOKE_TEST_ADMIN_USER: ${{ secrets.SMOKE_TEST_ADMIN_USER }}
SMOKE_TEST_ADMIN_PASSWORD: ${{ secrets.SMOKE_TEST_ADMIN_PASSWORD }}
SMOKE_TEST_ADMIN_USER_EMAIL: ${{ secrets.SMOKE_TEST_ADMIN_USER_EMAIL }}
SMOKE_TEST_CUSTOMER_USER: ${{ secrets.SMOKE_TEST_CUSTOMER_USER }}
SMOKE_TEST_CUSTOMER_PASSWORD: ${{ secrets.SMOKE_TEST_CUSTOMER_PASSWORD }}
WC_E2E_SCREENSHOTS: 1
E2E_RETEST: 1
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
E2E_SLACK_CHANNEL: ${{ secrets.SMOKE_TEST_SLACK_CHANNEL }}
UPDATE_WC: 1
DEFAULT_TIMEOUT_OVERRIDE: 120000
run: |
2021-11-03 01:08:32 +00:00
pnpx wc-e2e test:e2e plugins/woocommerce/tests/e2e/specs/smoke-tests/update-woocommerce.js
- name: Post Smoke tests results comment on PR
2021-12-15 22:48:33 +00:00
if: steps.installation.outcome == 'success'
uses: actions/github-script@v5
env:
2021-12-15 22:30:52 +00:00
TITLE: 'Smoke Test Results'
SMOKE_TEST_URL: ${{ secrets.SMOKE_TEST_URL }}
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const script = require( './package/woocommerce/packages/js/e2e-environment/bin/post-results-to-github-pr.js' )
await script({github, context})
- name: Run E2E tests.
working-directory: package/woocommerce/plugins/woocommerce
if: steps.installation.outcome == 'success'
env:
SMOKE_TEST_URL: ${{ secrets.SMOKE_TEST_URL }}
SMOKE_TEST_ADMIN_USER: ${{ secrets.SMOKE_TEST_ADMIN_USER }}
SMOKE_TEST_ADMIN_PASSWORD: ${{ secrets.SMOKE_TEST_ADMIN_PASSWORD }}
SMOKE_TEST_ADMIN_USER_EMAIL: ${{ secrets.SMOKE_TEST_ADMIN_USER_EMAIL }}
SMOKE_TEST_CUSTOMER_USER: ${{ secrets.SMOKE_TEST_CUSTOMER_USER }}
SMOKE_TEST_CUSTOMER_PASSWORD: ${{ secrets.SMOKE_TEST_CUSTOMER_PASSWORD }}
WC_E2E_SCREENSHOTS: 1
E2E_RETEST: 1
E2E_SLACK_TOKEN: ${{ secrets.SMOKE_TEST_SLACK_TOKEN }}
E2E_SLACK_CHANNEL: ${{ secrets.SMOKE_TEST_SLACK_CHANNEL }}
UPDATE_WC: 1
DEFAULT_TIMEOUT_OVERRIDE: 120000
run: |
2021-11-03 01:08:32 +00:00
pnpx wc-e2e test:e2e
2021-09-20 19:05:45 +00:00
- name: Post E2E tests results comment on PR
2021-12-15 22:48:33 +00:00
if: steps.installation.outcome == 'success'
uses: actions/github-script@v5
env:
2021-12-15 22:30:52 +00:00
TITLE: 'E2E Test Results'
SMOKE_TEST_URL: ${{ secrets.SMOKE_TEST_URL }}
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const script = require( './package/woocommerce/packages/js/e2e-environment/bin/post-results-to-github-pr.js' )
await script({github, context})
2021-09-20 17:16:24 +00:00
- name: Remove label from pull request.
2021-09-24 20:28:36 +00:00
if: "${{ contains(github.event.pull_request.labels.*.name, 'run: smoke tests') }}"
uses: actions-ecosystem/action-remove-labels@v1
2021-09-20 17:16:24 +00:00
with:
2021-09-24 20:28:36 +00:00
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: 'run: smoke tests'