✨ feat(metamask): Add basic connectToDapp
function
#67
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: 🧑🔧 Test | |
on: | |
push: | |
branches: | |
- new-dawn | |
pull_request: | |
jobs: | |
test-unit: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.7.6 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
registry-url: https://registry.npmjs.org | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build project | |
run: pnpm run build | |
- name: Run tests | |
run: pnpm run test | |
test-e2e-headless: | |
name: Run E2E tests (headless) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.7.6 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
registry-url: https://registry.npmjs.org | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
# For now, we only need Chromium. | |
- name: Install browsers for Playwright | |
run: pnpm dlx playwright install chromium | |
- name: Install linux deps | |
run: | | |
sudo apt-get install --no-install-recommends -y \ | |
fluxbox \ | |
xvfb | |
- name: Build project | |
run: pnpm run build | |
- name: Run E2E tests (headless) | |
run: | | |
Xvfb :0 -screen 0 1024x768x24 -listen tcp -ac & | |
pnpm run test:e2e:headless | |
env: | |
DISPLAY: :0.0 | |
- name: Archive Playwright traces | |
uses: actions/upload-artifact@v3 | |
if: success() || failure() | |
with: | |
name: playwright-traces-headless | |
path: | | |
wallets/metamask/test-results | |
if-no-files-found: error | |
test-e2e-headful: | |
name: Run E2E tests (headful) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.7.6 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
registry-url: https://registry.npmjs.org | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
# For now, we only need Chromium. | |
- name: Install browsers for Playwright | |
run: pnpm dlx playwright install chromium | |
- name: Install linux deps | |
run: | | |
sudo apt-get install --no-install-recommends -y \ | |
fluxbox \ | |
xvfb | |
- name: Build project | |
run: pnpm run build | |
- name: Run E2E tests (headful) | |
run: | | |
Xvfb :0 -screen 0 1024x768x24 -listen tcp -ac & | |
pnpm run test:e2e | |
env: | |
DISPLAY: :0.0 |