Skip to content

feat: add signup page #85

feat: add signup page

feat: add signup page #85

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Test
on:
push:
branches: ['**']
tags-ignore: ['*']
pull_request:
permissions: read-all
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
LEFTHOOK: 0
CI: true
jobs:
test:
name: Unit Test
strategy:
matrix:
node-version: ['20', '22']
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run actions/setup-sdk@local
uses: ./.github/setup-sdk
with:
nodeVersion: ${{ matrix.node-version }}
- if: ${{ steps.pnpm-cache.outputs.cache-hit != 'true' }}
name: Test and build
run: |
pnpm install
pnpm test
pnpm build
e2e-test:
name: E2E Test
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run actions/setup-sdk@local
uses: ./.github/setup-sdk
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30