fix: highlight render #98
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: Deploy Site | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| deploy-site: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Dependencies | |
| run: make | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.9.0 | |
| - name: Install puppeteer | |
| run: npx puppeteer browsers install chrome | |
| - name: Build site | |
| run: make build-docs | |
| - name: Deploy site | |
| uses: JamesIves/github-pages-deploy-action@v4.4.3 | |
| with: | |
| branch: gh-page | |
| folder: display | |
| single-commit: true | |
| clean: true |