wrap exceptions thrown in profile.map calls #24
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: Tests | |
on: [pull_request] | |
jobs: | |
typescript: | |
name: Type Validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
id: setup | |
uses: kitbagjs/actions-setup-project@main | |
- name: Validate types | |
run: npm run types | |
tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
id: setup | |
uses: kitbagjs/actions-setup-project@main | |
- name: Run unit tests | |
run: npm run test |