Fixes #24 #62
This file contains 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
# workflow to test sverto | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
name: sverto-check | |
jobs: | |
sverto-check: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "windows-latest"] | |
runs-on: ${{ matrix.os }} | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: 1.5.25 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Sverto docs npm dependencies | |
run: npm install | |
working-directory: ./docs | |
- name: Create docs _extensions folder | |
run: mkdir docs/_extensions | |
shell: bash | |
- name: Copy Sverto extension into docs | |
run: cp -rf _extensions/sverto docs/_extensions/sverto | |
shell: bash | |
- name: Render sverto docs | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: docs |