Skip to content

fix: resolve JSXElement references in @jsf lambdas #16

fix: resolve JSXElement references in @jsf lambdas

fix: resolve JSXElement references in @jsf lambdas #16

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
actions: write
contents: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v2
- name: Configure doc environment
shell: julia --project=docs --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- name: Build and deploy documentation
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_PLUTO_NOTEBOOKS: "true"
run: julia --project=docs --color=yes -e 'include("docs/make.jl")'