chore: examples private: true #864
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: 🧑🔧 Test | |
on: | |
push: | |
branches: | |
- new-dawn | |
pull_request: | |
paths: | |
- '.github/actions/**/*.yml' | |
- '.github/workflows/**/*.yml' | |
- 'packages/**' | |
- 'wallets/**' | |
jobs: | |
test-unit: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node & Install dependencies | |
uses: ./.github/actions/setup | |
- name: Build project | |
run: pnpm run build | |
- name: Run tests | |
run: pnpm run test | |
test-e2e-headful: | |
name: Run E2E tests (headful) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node & Install dependencies | |
uses: ./.github/actions/setup | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Install Playwright dependencies | |
run: pnpm dlx [email protected] install-deps | |
# For now, we only need Chromium. | |
- name: Install browsers for Playwright | |
run: pnpm dlx [email protected] install chromium | |
- name: Build project | |
run: pnpm run build | |
- name: Install linux dependencies | |
run: | | |
sudo apt-get install --no-install-recommends -y \ | |
xvfb | |
- name: Build project | |
run: pnpm run build | |
- name: Serve MetaMask Test Dapp | |
run: | | |
pnpm run serve:test-dapp & | |
- name: Build cache | |
run: | | |
xvfb-run pnpm run build:cache | |
- name: Run E2E tests (headful) | |
run: | | |
xvfb-run pnpm run test:playwright:headful | |
- name: Archive Playwright report | |
uses: actions/upload-artifact@v3 | |
if: success() || failure() | |
with: | |
name: playwright-report-headful | |
path: | | |
wallets/metamask/playwright-report-headful/ | |
if-no-files-found: error |