Getting started update and overhaul #773
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: Pull Request CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
# --- Install with caching | |
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: | | |
${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
/home/runner/.cache/Cypress | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install packages | |
run: pnpm install | |
- name: Type check | |
run: pnpm typecheck | |
- name: Lint | |
run: pnpm lint | |
- name: Format | |
run: pnpm format:check | |
- name: Run tests | |
run: pnpm test | |
- name: Build | |
run: pnpm build | |
- name: Validate links | |
run: pnpm cli validate-links .vitepress/dist | |
env: | |
# chalk has a color detection bug | |
FORCE_COLOR: 2 |