Use env time to bypass built-in time instead of usr/bin #157
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 docs | |
on: | |
push: | |
branches: [master, develop] | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
check_md: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Lint markdown files (markdownlint) | |
uses: articulate/actions-markdownlint@v1 | |
with: | |
config: .markdownlint.json | |
files: "." | |
ignore: changelog-entries |