feat(notifications): add view-all method for handling notices
#122
Workflow file for this run
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: Check PR | |
| on: | |
| pull_request: | |
| branches: [ prod ] | |
| jobs: | |
| check: | |
| name: Check PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc | |
| - name: Install dependencies | |
| run: npm i --ignore-scripts | |
| - name: Check eslint | |
| run: npm run lint:check | |
| - name: Typescript check | |
| run: npm run ts:check |