Playwright Tests #111
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: Playwright Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
base_url: | |
description: 'Environment base URL to run the tests on.' | |
type: string | |
required: true | |
jobs: | |
no-wallet-tests: | |
name: 'No wallet' | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.37.1-jammy | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn | |
- name: Run NO-WALLET tests | |
run: BASE_URL=${{ inputs.base_url }} yarn ci:no-wallet:regression | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report-no-wallet | |
path: playwright-reports/no-wallet | |
retention-days: 30 | |
with-wallet-aave-ethereum-tests: | |
name: 'With wallet - Aave - Ethereum' | |
runs-on: ubuntu-latest | |
env: | |
WALLET_ADDRESS: ${{ secrets.WALLET_ADDRESS }} | |
TENDERLY_PROJECT: ${{ secrets.TENDERLY_PROJECT }} | |
TENDERLY_USER: ${{ secrets.TENDERLY_USER }} | |
TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} | |
container: | |
image: synthetixio/docker-node:18.16-ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn | |
- name: Install playwright | |
run: npx playwright install && npx playwright install-deps | |
- name: Install xvfb | |
run: apt-get update -y && apt-get -y install xvfb && rm -rf /var/lib/apt/lists/* /var/cache/apt/* | |
- name: Run With wallet Aave Ethereum tests | |
run: | | |
WALLET_ADDRESS=${{ secrets.WALLET_ADDRESS }} \ | |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \ | |
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \ | |
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \ | |
BASE_URL=${{ inputs.base_url }} \ | |
yarn ci:with-wallet:aave:ethereum:regression | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report-with-wallet-aave-ethereum | |
path: playwright-reports/with-wallet-aave-ethereum | |
retention-days: 30 | |
with-wallet-aave-arbitrum-and-optimism-tests: | |
name: 'With wallet - Aave - Arbitrum & Optimism' | |
runs-on: ubuntu-latest | |
env: | |
WALLET_ADDRESS: ${{ secrets.WALLET_ADDRESS }} | |
TENDERLY_PROJECT: ${{ secrets.TENDERLY_PROJECT }} | |
TENDERLY_USER: ${{ secrets.TENDERLY_USER }} | |
TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} | |
container: | |
image: synthetixio/docker-node:18.16-ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn | |
- name: Install playwright | |
run: npx playwright install && npx playwright install-deps | |
- name: Install xvfb | |
run: apt-get update -y && apt-get -y install xvfb && rm -rf /var/lib/apt/lists/* /var/cache/apt/* | |
- name: Run With wallet Aave Arbitrum and Optimism tests | |
run: | | |
WALLET_ADDRESS=${{ secrets.WALLET_ADDRESS }} \ | |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \ | |
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \ | |
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \ | |
BASE_URL=${{ inputs.base_url }} \ | |
yarn ci:with-wallet:aave:arbitrum-and-optimism:regression | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report-with-wallet-aave-arbitrum-and-optimism | |
path: playwright-reports/with-wallet-aave-arbitrum-and-optimism | |
retention-days: 30 | |
with-wallet-maker-and-spark-tests: | |
name: 'With wallet - Maker & Spark' | |
runs-on: ubuntu-latest | |
env: | |
WALLET_ADDRESS: ${{ secrets.WALLET_ADDRESS }} | |
TENDERLY_PROJECT: ${{ secrets.TENDERLY_PROJECT }} | |
TENDERLY_USER: ${{ secrets.TENDERLY_USER }} | |
TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} | |
container: | |
image: synthetixio/docker-node:18.16-ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn | |
- name: Install playwright | |
run: npx playwright install && npx playwright install-deps | |
- name: Install xvfb | |
run: apt-get update -y && apt-get -y install xvfb && rm -rf /var/lib/apt/lists/* /var/cache/apt/* | |
- name: Run With wallet Maker and Spark tests | |
run: | | |
WALLET_ADDRESS=${{ secrets.WALLET_ADDRESS }} \ | |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \ | |
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \ | |
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \ | |
BASE_URL=${{ inputs.base_url }} \ | |
yarn ci:with-wallet:maker-and-spark:regression | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report-with-wallet-maker-and-spark | |
path: playwright-reports/with-wallet-maker-and-spark | |
retention-days: 30 |