Skip to content

fix: improve hero button attributes #43

fix: improve hero button attributes

fix: improve hero button attributes #43

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
env:
PORT: 3456
DOMAIN: "http://localhost:3456"
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Analyze types
run: npm run typecheck
- name: Run Playwright tests
if: ${{ !cancelled() }}
run: npm run test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: coverage/html-report