Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

第十章节示例代码对Windows平台支持 #19

第十章节示例代码对Windows平台支持

第十章节示例代码对Windows平台支持 #19

Workflow file for this run

name: Lint
on:
workflow_dispatch:
pull_request:
paths:
- "**.md"
- ".github/workflows/**"
push:
branches:
- main
paths:
- "**.md"
- ".github/workflows/**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: "14"
- name: Prettier check
run: |
# if you encounter error, rerun the command below and commit the changes
make lint
git diff --exit-code