Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

feat: token list

feat: token list #350

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main, master]
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests-e2e:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: ./.github/actions/setup-node
# E2E tests running with Playwright
- name: Install Playwright Browsers
run: |
cd packages/app
pnpm exec playwright install --with-deps chromium
- name: Run E2E Tests
run: xvfb-run --auto-servernum -- pnpm test
env:
NODE_ENV: test
- uses: actions/upload-artifact@v2
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Stop Test Node
run: pnpm node:stop