Skip to content

fix: remove h1 from imported readme #7

fix: remove h1 from imported readme

fix: remove h1 from imported readme #7

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
concurrency:
group: pr-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Format check
run: pnpm format:check
- name: Lint
run: pnpm lint:check
test:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Tests (unit + nuxt)
run: pnpm test-all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}