Bump js-yaml from 4.3.0 to 4.3.1 #146
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: PR Review | |
| on: pull_request | |
| jobs: | |
| validate: | |
| name: Validate apps | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: sudo apt-get install -y python3-jsonschema python3-pil | |
| - name: Run scripts | |
| run: python ./validate.py | |
| eslint: | |
| name: ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Run eslint | |
| uses: reviewdog/action-eslint@v1 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| level: error | |
| fail_on_error: true | |
| reporter: github-pr-review | |
| eslint_flags: '-c .eslintrc.yml ./**/*.js' |