feat: adds proper seo handling #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main CI | |
on: [push, pull_request] | |
jobs: | |
main-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Dependencies | |
run: bun install | |
- name: Install Playwright Browsers | |
run: bun playwright install --with-deps | |
- name: Check Format | |
run: bun format:check | |
- name: Lint | |
run: bun lint | |
- name: Typecheck | |
run: bun typecheck | |
- name: Unit tests | |
run: bun test | |
- name: Build | |
run: bun run build | |
- name: Run Playwright tests | |
run: bun playwright test | |
- name: Upload Playwright report | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |