Use isPointInside
function for both graphs and axis
#17775
Workflow file for this run
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 action | |
on: [pull_request] | |
permissions: {} | |
jobs: | |
vale: | |
name: runner / vale | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: errata-ai/vale-action@38bf078c328061f59879b347ca344a718a736018 # v2.1.0 | |
with: | |
reporter: github-pr-review | |
files: docs/data | |
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}} |