fix(deps): update dependency astro to v4.5.6 #49
Workflow file for this run
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
# Sample workflow for building and deploying a Jekyll site to GitHub Pages | |
name: Link Check | |
on: | |
# Runs on pushes targeting the default branch | |
pull_request: | |
branches: ['main'] | |
jobs: | |
# Build job | |
LintCheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
run: corepack enable | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
cache-dependency-path: pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm install | |
- name: ESLint Check | |
run: pnpm eslint . | |
- name: ZHLint Check | |
run: pnpm zhlint "./src/content/blog/*.md" | |
- name: Type Check | |
run: pnpm astro check |