mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-08 11:23:48 -05:00
Add CI job that lints VimL and reviews PRs
This commit is contained in:
15
.github/workflows/vint.yml
vendored
Normal file
15
.github/workflows/vint.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
name: Vint
|
||||||
|
on: [push, pull_request]
|
||||||
|
jobs:
|
||||||
|
vint:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
- name: Run vint with reviewdog
|
||||||
|
uses: reviewdog/action-vint@v1.0.1
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.github_token }}
|
||||||
|
reporter: github-pr-review
|
||||||
Reference in New Issue
Block a user