130 clicking on an asset and/or getting back to list/card view view causes a crash #156
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: Test merge requests | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| validate: | |
| name: Validate merge request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Lint | |
| run: npm run lint | |
| - name: Prettier | |
| run: npm run prettier:check | |
| - name: Build | |
| run: npm run build |