2022-04-27 14:29:33 +00:00
|
|
|
name: Run tests against PR
|
2021-10-08 00:01:26 +00:00
|
|
|
on: pull_request
|
2022-04-21 16:45:12 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-01-21 07:39:19 +00:00
|
|
|
jobs:
|
2021-10-08 00:01:26 +00:00
|
|
|
e2e-tests-run:
|
|
|
|
name: Runs E2E tests.
|
2022-04-27 01:28:56 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-10-08 00:01:26 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout code.
|
2022-04-21 16:45:12 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-01-22 07:23:07 +00:00
|
|
|
|
2022-04-21 16:45:12 +00:00
|
|
|
- name: Cache modules
|
|
|
|
uses: actions/cache@v3
|
2022-04-27 14:29:33 +00:00
|
|
|
id: cache-deps
|
2022-04-21 16:45:12 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.pnpm-store
|
2022-04-27 14:29:33 +00:00
|
|
|
package/woocommerce/plugins/woocommerce/packages
|
|
|
|
package/woocommerce/plugins/woocommerce/**/vendor
|
|
|
|
key: ${{ runner.os }}-test-npm-composer-${{ hashFiles('**/composer.lock', '**/pnpm-lock.yaml') }}
|
2022-04-21 16:45:12 +00:00
|
|
|
|
|
|
|
- name: Install PNPM
|
|
|
|
run: npm install -g pnpm
|
|
|
|
|
2022-03-31 22:33:28 +00:00
|
|
|
- name: Install dependencies
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm install
|
2021-10-28 19:32:31 +00:00
|
|
|
|
2022-04-27 13:40:37 +00:00
|
|
|
- name: Install Composer dependencies
|
2022-04-27 14:29:33 +00:00
|
|
|
if: steps.cache-deps.outputs.cache-hit != 'true'
|
|
|
|
run: pnpm nx composer-install-no-dev woocommerce
|
2022-04-27 13:40:37 +00:00
|
|
|
|
|
|
|
- name: Run build
|
|
|
|
run: pnpm nx build woocommerce
|
|
|
|
|
2022-03-31 22:08:52 +00:00
|
|
|
- name: Load docker images and start containers.
|
2022-04-27 13:40:37 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm exec wc-e2e docker:up
|
2022-03-31 22:08:52 +00:00
|
|
|
|
2021-10-08 00:01:26 +00:00
|
|
|
- name: Run tests command.
|
2022-04-27 13:40:37 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2021-10-08 00:01:26 +00:00
|
|
|
env:
|
|
|
|
WC_E2E_SCREENSHOTS: 1
|
|
|
|
E2E_SLACK_TOKEN: ${{ secrets.E2E_SLACK_TOKEN }}
|
|
|
|
E2E_SLACK_CHANNEL: ${{ secrets.E2E_SLACK_CHANNEL }}
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm exec wc-e2e test:e2e
|
2022-03-28 16:13:43 +00:00
|
|
|
|
|
|
|
- name: Archive E2E test screenshots
|
2022-04-21 16:45:12 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-03-28 16:23:15 +00:00
|
|
|
if: always()
|
2022-03-28 16:13:43 +00:00
|
|
|
with:
|
|
|
|
name: E2E Screenshots
|
2022-04-27 13:40:37 +00:00
|
|
|
path: plugins/woocommerce/tests/e2e/screenshots
|
2022-03-28 16:13:43 +00:00
|
|
|
if-no-files-found: ignore
|
|
|
|
retention-days: 5
|
|
|
|
|
2021-11-16 15:45:12 +00:00
|
|
|
api-tests-run:
|
|
|
|
name: Runs API tests.
|
2022-04-27 01:28:56 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-11-16 15:45:12 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout code.
|
2022-04-21 16:45:12 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-11-16 15:45:12 +00:00
|
|
|
|
2022-04-21 16:45:12 +00:00
|
|
|
- name: Cache modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.pnpm-store
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
|
|
|
|
- name: Install PNPM
|
|
|
|
run: npm install -g pnpm
|
|
|
|
|
2022-03-31 22:33:28 +00:00
|
|
|
- name: Install dependencies
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm install
|
2021-11-16 15:45:12 +00:00
|
|
|
|
2022-04-27 13:40:37 +00:00
|
|
|
- name: Install Composer dependencies
|
|
|
|
run: pnpm nx composer-install woocommerce
|
|
|
|
|
|
|
|
- name: Run build
|
|
|
|
run: pnpm nx build woocommerce
|
|
|
|
|
2022-03-31 21:53:27 +00:00
|
|
|
- name: Load docker images and start containers.
|
2022-04-27 13:40:37 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm exec wc-e2e docker:up
|
2022-03-31 21:53:27 +00:00
|
|
|
|
2021-11-16 15:45:12 +00:00
|
|
|
- name: Run tests command.
|
2022-04-27 14:29:33 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2021-11-16 15:45:12 +00:00
|
|
|
env:
|
2022-01-14 16:54:32 +00:00
|
|
|
BASE_URL: http://localhost:8084
|
|
|
|
USER_KEY: admin
|
|
|
|
USER_SECRET: password
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm exec wc-api-tests test api
|
2022-02-17 21:45:21 +00:00
|
|
|
|
2022-04-01 02:24:09 +00:00
|
|
|
- name: Upload API test report
|
2022-04-21 16:45:12 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-04-01 02:24:09 +00:00
|
|
|
with:
|
|
|
|
name: api-test-report---pr-${{ github.event.number }}
|
|
|
|
path: |
|
2022-04-27 14:29:33 +00:00
|
|
|
packages/js/api-core-tests/allure-results
|
|
|
|
packages/js/api-core-tests/allure-report
|
2022-04-01 02:24:09 +00:00
|
|
|
retention-days: 7
|
|
|
|
|
2022-02-17 21:45:21 +00:00
|
|
|
k6-tests-run:
|
2022-03-28 16:13:43 +00:00
|
|
|
name: Runs k6 Performance tests
|
2022-04-27 01:28:56 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-03-28 16:13:43 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout code.
|
2022-04-21 16:45:12 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-28 16:13:43 +00:00
|
|
|
|
2022-04-21 16:45:12 +00:00
|
|
|
- name: Cache modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.pnpm-store
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
|
|
|
|
- name: Install PNPM
|
|
|
|
run: npm install -g pnpm
|
|
|
|
|
2022-03-31 22:33:28 +00:00
|
|
|
- name: Install dependencies
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm install
|
2022-04-08 00:19:25 +00:00
|
|
|
|
2022-04-27 13:40:37 +00:00
|
|
|
- name: Install Composer dependencies
|
|
|
|
run: pnpm nx composer-install woocommerce
|
|
|
|
|
|
|
|
- name: Run build
|
|
|
|
run: pnpm nx build woocommerce
|
|
|
|
|
2022-03-31 22:55:14 +00:00
|
|
|
- name: Workaround to use initialization file with prepopulated data.
|
2022-04-27 13:40:37 +00:00
|
|
|
working-directory: plugins/woocommerce/tests/e2e/docker
|
2022-03-31 22:55:14 +00:00
|
|
|
run: |
|
|
|
|
cp init-sample-products.sh initialize.sh
|
2022-04-08 00:19:25 +00:00
|
|
|
|
2022-03-31 22:08:52 +00:00
|
|
|
- name: Load docker images and start containers.
|
2022-04-27 13:40:37 +00:00
|
|
|
working-directory: plugins/woocommerce
|
2022-04-21 16:45:12 +00:00
|
|
|
run: pnpm exec wc-e2e docker:up
|
2022-03-28 16:13:43 +00:00
|
|
|
|
|
|
|
- name: Install k6
|
|
|
|
run: |
|
|
|
|
curl https://github.com/grafana/k6/releases/download/v0.33.0/k6-v0.33.0-linux-amd64.tar.gz -L | tar xvz --strip-components 1
|
|
|
|
|
|
|
|
- name: Run k6 tests
|
|
|
|
run: |
|
2022-04-27 13:40:37 +00:00
|
|
|
./k6 run plugins/woocommerce/tests/performance/tests/gh-action-pr-requests.js
|