YAML File Syntax Validation running on 11458/merge #5
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: YAML File Syntax Validation | |
run-name: YAML File Syntax Validation running on ${{ github.ref_name }} | |
on: | |
pull_request: | |
branches: | |
- master | |
# Allows to run workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
YamlFileValidation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm install -g [email protected];which npm;npm -v | |
- name: npm install | |
run: npm install | |
- name: YAML File Syntax Validation | |
run: npm run tsc && node .script/yamlFileValidator.js | |