refactor: adjust delegate registration form step #6874
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: E2E | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- develop-ledger | |
pull_request: | |
types: [ready_for_review, synchronize, opened] | |
jobs: | |
build-and-upload: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-build-and-upload | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
env: | |
NODE_OPTIONS: "--max_old_space_size=8192" | |
run: pnpm build:e2e | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
e2e-vote: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-vote | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/vote/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/vote/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/vote/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-transaction: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-transaction | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/transaction/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/transaction/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/transaction/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-contact: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-contact | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/contact/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/contact/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/contact/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-dashboard: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-dashboard | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/dashboard/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/dashboard/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/dashboard/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-profile: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-profile | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/profile/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/profile/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/profile/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-message: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-message | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/message/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/message/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/message/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-wallet: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-wallet | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/wallet/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/wallet/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/wallet/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* | |
e2e-settings: | |
needs: build-and-upload | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.12.2] | |
concurrency: | |
group: ${{ github.head_ref }}-e2e-settings | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Update System | |
run: sudo apt-get update | |
- name: Install (Ledger Requirements) | |
run: sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Install (pnpm) | |
run: pnpm install --frozen-lockfile | |
- name: Set up Microsoft Edge | |
run: | | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' | |
sudo apt update | |
sudo apt install microsoft-edge-beta | |
- name: Download Build Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: ${{ github.workspace }}/dist | |
- name: Chromium | |
run: pnpm test:e2e:ci src/domains/setting/cucumber | |
- name: Firefox | |
run: pnpm test:e2e:ci:firefox src/domains/setting/cucumber | |
- name: Edge | |
run: pnpm test:e2e:ci:edge src/domains/setting/cucumber | |
- name: Upload Screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.job }}-screenshots | |
path: ${{ github.workspace }}/screenshots/**/* |