feat(trusted-companions): Plan trip with mobility profile for self or on behalf of trusted companion #4432
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
# GitHub Action to automate the identification of common misspellings in text files. | |
# https://github.com/codespell-project/actions-codespell | |
# https://github.com/codespell-project/codespell | |
name: codespell | |
on: pull_request | |
jobs: | |
codespell: | |
name: Check for spelling errors | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: codespell-project/actions-codespell@master | |
with: | |
check_filenames: true | |
ignore_words_list: MapPin | |
# skip git, yarn, pixel test script and HAR file, and all i18n resources. | |
# Also, the a11y test file has a false positive and the ignore list does not work | |
# see https://github.com/opentripplanner/otp-react-redux/pull/436/checks?check_run_id=3369380014 | |
skip: ./.git,yarn.lock,./a11y/a11y.test.js,./a11y/mocks,./percy/percy.test.js,./percy/mock.har,./i18n,./__tests__/mocks,otpSchema.json,./percy/mocks/*.json |