Prerender launcher working #14
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@v3 | |
- name: Install Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "latest" | |
- name: Install Sverto docs npm dependencies | |
run: npm install | |
working-directory: ./docs | |
- name: Render sverto docs | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: docs |