Skip to content

All Tests

All Tests #51

Workflow file for this run

name: All Tests - Staging
on:
workflow_dispatch:
inputs:
base_url:
description: 'Environment base URL to run the tests on.'
type: string
default: 'https://staging.summer.fi'
required: true
flags:
description: 'Flags to enable / disable. For example: "flag1:true flag2:false"'
type: string
default: ''
required: false
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 }} FLAGS=${{ inputs.flags}} yarn nightly:no-wallet
- 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:
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: |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \
BASE_URL=${{ inputs.base_url }} \
FLAGS=${{ inputs.flags}} \
yarn nightly:with-wallet:aave:ethereum
- 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-other-tests:
name: 'With wallet - Aave - Arbitrum, Optimism & Base'
runs-on: ubuntu-latest
env:
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, Optimism and Base tests
run: |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \
BASE_URL=${{ inputs.base_url }} \
FLAGS=${{ inputs.flags}} \
yarn nightly:with-wallet:aave:other
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report-with-wallet-aave-other
path: playwright-reports/with-wallet-aave-other
retention-days: 30
with-wallet-ajna-and-morphoblue-tests:
name: 'With wallet - Ajna'
runs-on: ubuntu-latest
env:
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 Ajna tests
run: |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \
BASE_URL=${{ inputs.base_url }} \
FLAGS=${{ inputs.flags}} \
yarn nightly:with-wallet:ajna-and-morphoblue
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report-with-wallet-ajna-and-morphoblue
path: playwright-reports/with-wallet-ajna-and-morphoblue
retention-days: 30
with-wallet-maker-and-spark-tests:
name: 'With wallet - Maker & Spark'
runs-on: ubuntu-latest
env:
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: |
TENDERLY_PROJECT=${{ secrets.TENDERLY_PROJECT }} \
TENDERLY_USER=${{ secrets.TENDERLY_USER }} \
TENDERLY_ACCESS_KEY=${{ secrets.TENDERLY_ACCESS_KEY }} \
BASE_URL=${{ inputs.base_url }} \
FLAGS=${{ inputs.flags}} \
yarn nightly:with-wallet:maker-and-spark
- 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