Remove the UnitGrid experiment slide (unused)
#13
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 to safe26.hccs.dev GitHub Pages | |
| on: | |
| push: { branches: [main] } | |
| workflow_dispatch: | |
| jobs: | |
| ghp: | |
| name: Build/Deploy to GitHub Pages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| # The deck pulls `@slidev/*` from pkg.pr.new continuous-release builds | |
| # (see `package.json` → `pnpm.overrides`), so there's no fork checkout to | |
| # build here anymore. `playwright-chromium`'s postinstall fetches the | |
| # headless browser that `slidev build` uses to render per-slide OG shells. | |
| - run: pnpm i --no-frozen-lockfile | |
| # Belt + suspenders: guarantee the browser is present even if a cached | |
| # pnpm store skipped the postinstall (the binary lives outside the store, | |
| # in ~/.cache/ms-playwright, which isn't cached between runs). | |
| - run: pnpm exec playwright install --with-deps chromium | |
| - run: pnpm build | |
| - uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| folder: dist |