Enable default social cards #612
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
# This is a basic workflow to help you get started with Actions | |
name: Vale Lint Check | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events on any branch | |
pull_request: | |
push: | |
branches: '*' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
branches: '*' | |
jobs: | |
vale-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: | |
run: | | |
pwd | |
- uses: errata-ai/vale-action@v2.1.1 | |
with: | |
files: '["docs", "includes"]' | |
fail_on_error: true |