refactor(core)!: replace TUI_DATE_FORMAT
, TUI_DATE_SEPARATOR
with single observable token
#17750
Workflow file for this run
This file contains 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: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
runs-on: ubuntu-latest | |
name: Unit tests | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- run: npx tsc --project tsconfig.spec.json | |
- run: npx nx run-many -t test --output-style=stream --nxBail | |
- run: tree -L 2 ./coverage -P 'lcov.info' | |
- uses: codecov/[email protected] | |
with: | |
directory: ./coverage/ | |
flags: summary | |
name: units | |
concurrency: | |
group: test-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |