Skip to content

fix: the value in the component is incorrectly updated when it is passed as an empty string using formControl #2219

fix: the value in the component is incorrectly updated when it is passed as an empty string using formControl

fix: the value in the component is incorrectly updated when it is passed as an empty string using formControl #2219

Workflow file for this run

name: ⚙️ E2E tests
on:
pull_request:
jobs:
e2e:
name: E2E
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- 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 nx prerender editor-demo
- uses: taiga-family/ci/actions/run/[email protected]
with:
port: ${{ env.NG_SERVER_PORT }}
directory: ${{ env.DIST }}
replaceBaseUrlFrom: /editor/
replaceBaseUrlTo: /
- run: npx nx e2e editor-demo-playwright -- --update-snapshots
- uses: taiga-family/ci/actions/run/[email protected]
with:
branch: snapshots/demo/next/${{ github.base_ref }}
destination: ${{ env.DIST_NEXT }}
- uses: taiga-family/ci/actions/run/[email protected]
with:
port: ${{ env.NG_SERVER_PORT }}
directory: ${{ env.DIST_NEXT }}
replaceBaseUrlFrom: /editor/
replaceBaseUrlTo: /
- run: npx nx e2e editor-demo-playwright
continue-on-error: true
- uses: actions/[email protected]
with:
path: ./projects/demo-playwright/tests-results/**/*-diff.png
name: ${{ env.PLAYWRIGHT_SNAPSHOTS_ARTIFACTS_KEY }}
if-no-files-found: ignore
compression-level: 0
retention-days: 1
- name: Deploy report
uses: FirebaseExtended/action-hosting-deploy@v0
continue-on-error: true
if: ${{ env.IS_FORK == 'false' && env.IS_DEPENDABOT == 'false' }}
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_TUI_EDITOR }}
projectId: taiga-editor
target: taiga-editor-e2e-report
expires: 1d
- id: diff-checker
run: |
echo "diff_exist=$(find ./projects/demo-playwright/tests-results -regex '.*diff\.png$' | wc -l | sed -e 's/^[[:space:]]*//')" >> $GITHUB_OUTPUT
- if: ${{ steps.diff-checker.outputs.diff_exist != '0' }}
run: |
find ./projects/demo-playwright/tests-results -regex '.*diff\.png$' -exec echo "{}" \;
exit 1
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true