Merge pull request #391 from wearerequired/fix/content-picker-context #1105
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: Run Unit Test Suite | |
| on: [push, workflow_dispatch] | |
| permissions: | |
| contents: read | |
| jobs: | |
| jest: | |
| name: Jest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install NPM Dependencies | |
| run: npm ci | |
| - name: Run Unit Tests | |
| run: npm test |