feat: add new entry #62
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
name: textlint | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "**.md" | |
pull_request: | |
paths: | |
- "**.md" | |
permissions: | |
contents: read | |
jobs: | |
test: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
year: [2024, 2023, 2021] | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.43.6 | |
- run: deno cache __tests__/deps.ts | |
- run: find posts/${{ matrix.year }} -name '*.md' | sort | xargs -I file deno task lint file |