Removed: Polyfil (#1098) #1647
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: vale-linting | |
on: [push] | |
# Run Vale on changed files only | |
jobs: | |
vale-setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get Changed Files | |
id: get_changed_files | |
uses: lots0logs/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: List Commit Files | |
id: list_commit_files | |
run: | | |
echo "Vale will run on the following files:" | |
cat ${HOME}/files.json | |
- name: Run Vale | |
uses: errata-ai/[email protected] | |
with: | |
debug: true | |
styles: | | |
https://github.com/errata-ai/Microsoft/releases/latest/download/Microsoft.zip | |
files: '${{ steps.get_changed_files.outputs.all }}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |