DRYD-2108: Search > SearchResults > Link Functionality in New Search Result Table #538
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: Continuous integration | |
| on: | |
| push: | |
| branches: [ "main", "v*", "develop" ] | |
| pull_request: | |
| branches: [ "main", "v*", "develop" ] | |
| jobs: | |
| check: | |
| name: Check code | |
| uses: collectionspace/.github/.github/workflows/check-js.yml@main | |
| upload-coverage: | |
| name: Upload coverage report | |
| needs: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download coverage report artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: coverage | |
| - name: Upload to codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| verbose: true |