Skip to content

feat: topology and linear operators #14

feat: topology and linear operators

feat: topology and linear operators #14

Workflow file for this run

name: openmath
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
- run: |
cd scripts/precompiled_html_generation
ls
npm ci
node compile_latex_to_mathml.js
node dom_adjustments.js
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './dom_adjusted'
deploy:
needs: build # Add this line to make deploy wait for build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2