fix: the value in the component is incorrectly updated when it is passed as an empty string using formControl #2209
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: ⚙️ 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 | |
- 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 |