fix: ensure type safety and do not deeply make the ol map reactive #18
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: Publish bleeding-edge documentation to gh-pages/next | |
on: | |
push: | |
branches: | |
- next | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.18.0 | |
registry-url: https://registry.npmjs.org/ | |
- run: sudo apt install mkdocs mkdocs-material | |
- run: npm ci | |
- run: npm run docs:ci | |
- uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs-html | |
target-folder: next |