Reland Fix possible invalid measurements when width or height is zero pixels #2783
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 Website | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build_next: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup-js | |
| - name: Restore emsdk | |
| uses: ./.github/actions/cache-emsdk | |
| - name: Build Website | |
| run: yarn build | |
| working-directory: website | |
| typecheck: | |
| name: Typecheck [Docusaurus] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup | |
| uses: ./.github/actions/setup-js | |
| - name: yarn tsc | |
| run: yarn tsc | |
| working-directory: website |