Skip to content

feat: make former headless and remove formkit #95

feat: make former headless and remove formkit

feat: make former headless and remove formkit #95

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
formart:
name: Check Formart
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- run: pnpm format:check
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
# - run: pnpm lint # TODO: Uncomment this line after adding correct linting rules
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- run: pnpm test
# e2e:
# name: Playwright Tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 20
# - uses: pnpm/action-setup@v3
# with:
# version: 8
# run_install: true
# - run: pnpm build:package
# - run: npx playwright install --with-deps
# - run: pnpm test || exit 1
# - uses: actions/upload-artifact@v3
# if: always()
# with:
# name: playwright-report
# path: playground/playwright-report/
# retention-days: 30