Fix issue where padding for box sizing is resolved against wrong refe… #2571
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: 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 |