Bump eslint-plugin-jsx-a11y from 6.8.0 to 6.10.2 #59
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: npm i -g corepack@latest | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
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 |