Skip to content

fix(web): align Markdown other-fixes ordering with plain mode UX #48

fix(web): align Markdown other-fixes ordering with plain mode UX

fix(web): align Markdown other-fixes ordering with plain mode UX #48

Workflow file for this run

name: GitHub Pages for Typeseter
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Use npm mirror
run: npm config set registry https://registry.npmmirror.com/
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist