Skip to content

refactor: second iteration of core refactoring #18818

refactor: second iteration of core refactoring

refactor: second iteration of core refactoring #18818

Workflow file for this run

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/checkout@v1.57.0
- uses: taiga-family/ci/actions/setup/variables@v1.57.0
- uses: taiga-family/ci/actions/setup/node@v1.57.0
- 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/codecov-action@v4.4.0
with:
directory: ./coverage/
flags: summary
name: units
concurrency:
group: test-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true