Replace code examples with dynamic <Github> components wallet selecto… #5780
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: build-check | |
| on: [push, pull_request] | |
| jobs: | |
| build-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22" | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ${{ github.workspace }}/**/.cache | |
| key: | | |
| ${{ runner.os }}-docusaurus-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-docusaurus-${{ hashFiles('**/yarn.lock') }} | |
| - name: Build docusaurus | |
| run: | | |
| cd website && yarn | |
| yarn build:preview | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=8192 |