feat(design-v2): bottom controls drawer component with reactions flow #5381
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: Check Docusaurus docs with vale linter | |
on: [pull_request] | |
jobs: | |
vale: | |
name: Vale doc linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
version: 2.30.0 | |
# added, diff_context, file, nofilter | |
# Default is added: results are filtered for added/modified files. Set to no filter when all files need to be checked. | |
# More info: https://github.com/errata-ai/vale-action and https://github.com/reviewdog/reviewdog#filter-mode | |
filter_mode: nofilter | |
# github-pr-check, github-pr-review, github-check | |
reporter: github-pr-check | |
# Set fail_on_error to true to make sure builds fail. | |
fail_on_error: true | |
files: '["packages/react-native-sdk/README.md","packages/react-native-sdk/docusaurus","packages/react-native-sdk/src","packages/react-sdk/README.md","packages/react-sdk/src"]' | |
env: | |
# Required, set by GitHub actions automatically: | |
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |