Skip to content

Document MLT support #2535

Document MLT support

Document MLT support #2535

Workflow file for this run

name: Docs - Build (& Deploy)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-test-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with: { persist-credentials: false }
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version-file: '.nvmrc'
- name: Install NPM packages
run: npm ci
- name: Build style spec
run: |
npm run generate-style-spec
npm run generate-typings
- name: Build docs
run: npm run mkdocs-build
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@4a3abc783e1a24aeb44c16e869ad83caf6b4cc23 # v4.7.4
with:
branch: gh-pages
folder: site