mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
768 B
26 lines
768 B
4 years ago
|
name: Stylecheck
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
stylecheck:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Get Changed Files
|
||
|
id: get_changed_files
|
||
|
uses: lots0logs/gh-action-get-changed-files@2.1.4
|
||
|
with:
|
||
|
token: ${{ github.token }}
|
||
|
- name: Run vale
|
||
|
uses: errata-ai/vale-action@v1.3.0
|
||
|
with:
|
||
|
styles: https://github.com/errata-ai/Google/releases/latest/download/Google.zip
|
||
|
config: https://raw.githubusercontent.com/blockstack/docs/master/.vale/vale.ini
|
||
|
files: "${{ steps.get_changed_files.outputs.all }}"
|
||
|
onlyAnnotateModifiedLines: true
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ github.token }}
|