feat: add support for the onError
callback in useAsset
#79
Workflow file for this run
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: CI | |
on: | |
push: | |
jobs: | |
verify: | |
name: CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
script: | |
- name: Typecheck | |
command: test:types | |
- name: Lint | |
command: test:lint | |
- name: Unit tests | |
command: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm ci --ignore-scripts --no-audit --no-fund | |
- run: npm rebuild | |
- run: npm run ${{ matrix.script.command }} |