Fix display: contents nodes having hasNewLayout set incorrectly (#1970)
#3189
Workflow file for this run
This file contains hidden or 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: Validate Android | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - 'release-*' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build [${{ matrix.os }}][${{ matrix.mode }}] | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| mode: [Debug, Release] | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup-android | |
| - name: Build | |
| run: ./gradlew assemble${{ matrix.mode }} --stacktrace |