Add angular constraints functionality #378
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: Spell Check | |
on: | |
pull_request: | |
push: | |
schedule: # Schedule trigger for catching new misspelling detections resulting from dictionary updates. | |
# Run every Saturday at 3 AM UTC. | |
- cron: "0 3 * * 2" | |
# workflow_dispatch event allows the workflow to be triggered manually | |
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#workflow_dispatch | |
workflow_dispatch: | |
# repository_dispatch event allows the workflow to be triggered via the GitHub API | |
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#repository_dispatch | |
repository_dispatch: | |
jobs: | |
build: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
# The checkout step | |
- uses: actions/checkout@master | |
- uses: rojopolis/[email protected] | |
name: Spellcheck |