Skip to content

Add bio component

Add bio component #8

Workflow file for this run

name: 🎽 CI
on:
push:
branches:
- main
paths:
- "**.astro"
- "**.ts"
- bun.lockb
- .github/workflows/ci.yml
pull_request:
paths:
- "**.astro"
- "**.ts"
- bun.lockb
- .github/workflows/ci.yml
jobs:
astro-check:
name: πŸš€ Astro Check
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🍞 Setup Bun with Cache
uses: ./.github/actions/setup-bun-with-cache
- name: πŸš€ Astro Check
run: bun run check:astro
biome-check:
name: 🏞️ Biome Check
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🍞 Setup Bun with Cache
uses: ./.github/actions/setup-bun-with-cache
- name: 🏞️ Biome Check
run: bun run check:biome
test:
name: πŸ§ͺ Test
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🍞 Setup Bun with Cache
uses: ./.github/actions/setup-bun-with-cache
- name: πŸ§ͺ Run Tests
run: bun run test:cov
- name: β˜‚οΈ Upload Coverage
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: β˜‚οΈ Upload Test Results
if: ${{ !cancelled() }}
uses: codecov/test-results-action@9739113ad922ea0a9abb4b2c0f8bf6a4aa8ef820 # v1.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
build-check:
name: πŸ› οΈ Build Check
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🍞 Setup Bun with Cache
uses: ./.github/actions/setup-bun-with-cache
- name: πŸ› οΈ Build Check
run: bun run build