chg: 記事修正 #329
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: ci | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
- uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: | | |
pnpm install --frozen-lockfile | |
- name: Run prettier | |
run: pnpm format:check | |
- name: Run eslint | |
run: pnpm lint | |
- name: Run markdownlint | |
run: pnpm mdlint |