Skip to content

Merge pull request #22 from gl-eb/patch-1 #59

Merge pull request #22 from gl-eb/patch-1

Merge pull request #22 from gl-eb/patch-1 #59

Workflow file for this run

# 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