Skip to content

[javascript/project_library.md] Updates phrasing for point 1 of the assignment #38

[javascript/project_library.md] Updates phrasing for point 1 of the assignment

[javascript/project_library.md] Updates phrasing for point 1 of the assignment #38

name: MarkDownLint
on:
pull_request:
paths:
- '**/project_*.md'
- '!*'
- '!archive/**'
- '!templates/**'
- '!markdownlint/docs/**'
- '!.github/**'
jobs:
project_lint:
name: Lint project files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v41
id: changed-files
with:
files: |
**/project_*.md
!*
!archive/**
!templates/**
!markdownlint/docs/**
!.github/**
separator: ','
- uses: DavidAnson/markdownlint-cli2-action@v14
with:
config: './project.markdownlint-cli2.jsonc'
globs: ${{ steps.changed-files.outputs.all_changed_files }}
separator: ','