This repository has been archived by the owner on Nov 16, 2024. It is now read-only.
fix(style): on mobile, main content can scroll up beyond header #19
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: Run linter and check types | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- '.vscode/**' | |
- '.github/**' | |
- 'LICENSE' | |
- 'renovate.json' | |
- 'CHANGELOG.md' | |
- 'README.md' | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
cache-dependency-path: "pnpm-lock.yaml" | |
- run: pnpm install --frozen-lockfile | |
- name: Generate types | |
run: pnpm run build | |
- name: Lint | |
run: pnpm run lint | |
- name: Type Check | |
run: pnpm run typecheck |