Skip to content

adds e2e test showing the alternative way to create accounts (#47) #30

adds e2e test showing the alternative way to create accounts (#47)

adds e2e test showing the alternative way to create accounts (#47) #30

Workflow file for this run

name: Playwright Tests
on:
pull_request:
push:
branches: main
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Just
uses: extractions/setup-just@v2
- name: install wasm-pack
uses: jetli/[email protected]
with:
version: latest
- name: build pkg
run: just build
- uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm i
- name: Install Playwright Browsers
working-directory: ./packages/e2e-tests/
run: npx playwright install --with-deps
- name: Run Playwright tests
run: pnpm run test:e2e