Skip to content

feat: add favicon, fix contrast/heading a11y, custom 404 page #45

feat: add favicon, fix contrast/heading a11y, custom 404 page

feat: add favicon, fix contrast/heading a11y, custom 404 page #45

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run test:coverage
build:
name: Build
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
env:
TURSO_DATABASE_URL: ""
TURSO_AUTH_TOKEN: ""