[SABRA-2456] Add V2 Facets and Searchabilities API Support #239
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
| name: Spell check | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: spell-check-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| name: Run spell check | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: ["18.13.0"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Spell check | |
| run: npx [email protected] "**/*.js" |