NodeJS Course - Authentication Basics: Shifting from callback to promises approach #541
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: MarkdownLint | |
on: | |
pull_request: | |
paths: | |
- '**.md' | |
- '!*' | |
- '!**/project_*' | |
- '!**/project-*' | |
- '!archive/**' | |
- '!templates/**' | |
- '!markdownlint/docs/**' | |
- '!.github/**' | |
jobs: | |
lesson_lint: | |
name: Lint lesson files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v41 | |
id: changed-files | |
with: | |
files: | | |
**.md | |
!* | |
!**/project_* | |
!**/project-* | |
!archive/** | |
!templates/** | |
!markdownlint/docs/** | |
!.github/** | |
separator: ',' | |
- uses: DavidAnson/markdownlint-cli2-action@v14 | |
with: | |
config: './lesson.markdownlint-cli2.jsonc' | |
globs: ${{ steps.changed-files.outputs.all_changed_files }} | |
separator: ',' |