✨ feat(metamask): Add basic connectToDapp
function
#62
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: | |
name: Run E2E 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 | |
# For now, we only need Chromium. | |
- name: Install browsers for Playwright | |
run: pnpm dlx playwright install chromium | |
- name: Build project | |
run: pnpm run build | |
- name: Run E2E tests (headless) | |
run: pnpm run test:e2e:headless | |
- name: Archive Playwright traces | |
uses: actions/upload-artifact@v3 | |
if: success() || failure() | |
with: | |
name: playwright-traces | |
path: | | |
wallets/metamask/test-results | |
if-no-files-found: error |