feat: update the course intro and all lesson intros of the JS2 course to be about JavaScript #2265
Workflow file for this run
This file contains hidden or 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: Vale | |
| on: [ pull_request ] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v46 | |
| with: | |
| files: '**/*.{md,mdx}' | |
| files_ignore: | | |
| sources/api/*.{md,mdx} | |
| apify-api/README.md | |
| apify-api/openapi/README.md | |
| apify-api/openapi/paths/README.md | |
| apify-api/openapi/components/README.md | |
| sources/legal/**/*.{md,mdx} | |
| separator: ',' | |
| - uses: errata-ai/vale-action@reviewdog | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| with: | |
| files: ${{ steps.changed-files.outputs.all_changed_files }} | |
| separator: ',' | |
| fail_on_error: true | |
| vale_flags: '--minAlertLevel=error' | |
| reporter: github-pr-annotations | |