fix(list): errors following a full review of the component (#DS-5402) #3156
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: Unit tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| unit_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: ./.github/workflows/actions/setup-node | |
| # Build styles which are required for unit tests | |
| - run: yarn run styles:build-all | |
| - run: | | |
| yarn run unit:components | |
| yarn run unit:angular-moment-adapter | |
| yarn run unit:angular-luxon-adapter | |
| yarn run unit:schematics | |
| yarn run unit:cli | |
| yarn run unit:koobiq-docs | |
| yarn run unit:tools | |
| yarn run unit:components-experimental |