Skip to content

feat(web): add tex support for math formulas #803

feat(web): add tex support for math formulas

feat(web): add tex support for math formulas #803

Workflow file for this run

name: Chatbot Web CI
on:
push:
branches:
- main
paths:
- '.github/workflows/web-ci.yml'
- 'web/**'
pull_request:
types:
- opened
- synchronize
paths:
- '.github/workflows/web-ci.yml'
- 'web/**'
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
jobs:
lint:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install modules
run: yarn
- name: lint
run: make lint
test:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install modules
run: yarn
- name: test
run: make test