fix(ai): normalize thrown event lookup failures to Event not found #1941
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 Jest tests on push | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| - master | |
| - prod | |
| jobs: | |
| build: | |
| name: Run Jest tests | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install modules | |
| run: yarn | |
| - name: Run tests | |
| run: yarn test | |
| - uses: codecov/codecov-action@v1 |