chore(deps): bump actions/upload-artifact from 4 to 6 #910
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: Unit tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| unit_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/workflows/actions/setup-node | |
| # Build styles which are required for karma/jasmine tests | |
| - run: yarn run styles:build-all | |
| - run: | | |
| yarn run unit:cdk | |
| yarn run unit:components | |
| yarn run unit:angular-moment-adapter | |
| yarn run unit:angular-luxon-adapter | |
| yarn run unit:schematics | |
| yarn run unit:koobiq-docs | |
| yarn run unit:api-gen | |
| yarn run unit:components-experimental |