Skip to content

Commit c5a5c35

Browse files
authored
feat: mathjax-3 (#103)
* feat: mathjax-3 * physics wip * wip add test cases * wip add gh action * add matrix test and handle htmlentities * strip require and improve tests
1 parent e2d255f commit c5a5c35

File tree

7 files changed

+803
-1130
lines changed

7 files changed

+803
-1130
lines changed

.github/workflows/tests.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: MathJax Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
pull_request:
8+
branches:
9+
- dev
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-22.04
14+
15+
steps:
16+
- name: Checkout Repository
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: 22
23+
24+
- name: Install Dependencies
25+
run: npm ci
26+
27+
- name: Run Tests
28+
run: npm test

0 commit comments

Comments
 (0)