fix nested listing problem in intro page #101
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: 🚀 Preview | |
| concurrency: preview-${{ github.ref }} | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - closed | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| preview: | |
| name: 🚀 Preview | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛑 Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| - name: ⬇️ Checkout | |
| uses: actions/checkout@v3 | |
| - name: 🐍 Python | |
| uses: actions/setup-python@v4 | |
| - name: 🎈 Install and Build | |
| run: | | |
| pip install --upgrade pip | |
| pip install mkdocs pymdown-extensions mkdocs-material | |
| mkdocs build | |
| - name: 🚀 Deploy | |
| uses: rossjrw/pr-preview-action@v1 | |
| with: | |
| source-dir: ./site/ |