Skip to content

fix(deps): update dependency astro to v4.5.6 #49

fix(deps): update dependency astro to v4.5.6

fix(deps): update dependency astro to v4.5.6 #49

Workflow file for this run

# 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