add zdt to datetime section, add zBench to benchmarks section (#26) #76
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: 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 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "latest" | |
- name: Prettier check | |
run: | | |
# if you encounter error, rerun the command below and commit the changes | |
make toc | |
make lint | |
git diff --exit-code |