Update Statistics Update Trigger YouTube #343
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: reviewdog | |
on: [pull_request] | |
jobs: | |
remark-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install remark deps | |
shell: bash | |
run: | | |
npm install -g remark remark-cli remark-frontmatter remark-lint-frontmatter-schema | |
- name: remark-lint | |
uses: reviewdog/action-remark-lint@v5 | |
with: | |
reporter: github-pr-review | |
level: warning | |
fail_on_error: true |