Skip to content

✨ feat: Optional caching for tests and enable tests for windows #778

✨ feat: Optional caching for tests and enable tests for windows

✨ feat: Optional caching for tests and enable tests for windows #778

Workflow file for this run

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:e2e: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