feat(addon-mobile): SheetDialog
add new dialog
#467
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 Summary report | |
on: | |
pull_request: | |
env: | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.head_ref , 'release/') }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup global variables | |
uses: ./.github/actions/variables | |
- name: Wait for e2e tests to succeed | |
uses: codex-/await-local-workflow-run@v1 | |
with: | |
token: ${{ github.token }} | |
workflow: e2e.yml | |
timeout_mins: 120 | |
poll_interval_ms: 60000 | |
- name: Download cache / ${{ env.SNAPSHOTS_CACHE_KEY }} | |
uses: actions/cache/[email protected] | |
with: | |
path: ${{ env.SNAPSHOTS_PATH }} | |
key: ${{ env.SNAPSHOTS_CACHE_KEY }} | |
- name: Debug output | |
continue-on-error: true | |
run: tree ${{ env.SNAPSHOTS_PATH }} | |
- name: Check if diff-output exists | |
id: diff-checker | |
run: | | |
echo "diff_exist=$(find ${{ env.SNAPSHOTS_PATH }} -regex '.*\.diff\.png$' | wc -l | sed -e 's/^[[:space:]]*//')" >> $GITHUB_OUTPUT | |
- name: Upload artifacts / ${{ env.SNAPSHOTS_ARTIFACTS_KEY }} | |
if: ${{ steps.diff-checker.outputs.diff_exist != '0' }} | |
continue-on-error: true | |
uses: actions/[email protected] | |
with: | |
name: ${{ env.SNAPSHOTS_ARTIFACTS_KEY }} | |
path: ${{ env.SNAPSHOTS_PATH }} | |
- name: Fall with an error if diff-output exists | |
if: ${{ steps.diff-checker.outputs.diff_exist != '0' }} | |
run: | | |
find ${{ env.SNAPSHOTS_PATH }} -regex '.*\.diff\.png$' -exec echo "{}" \; | |
exit 1 | |
concurrency: | |
group: e2e-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |