Skip to content

fix: fix anchor accessibility #16

fix: fix anchor accessibility

fix: fix anchor accessibility #16

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Astro check
run: pnpm astro check
- name: Prettier check
run: pnpm exec prettier --check src
- name: Build
run: pnpm build