Update version to rc.1 and copyright dates #16
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
name: Compile and test MathJax | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 10 | |
run_install: false | |
- name: Install packages | |
run: | | |
pnpm -s -r i | |
pnpm -s link:src | |
- name: Compile MathJax | |
run: | | |
pnpm -s mjs:compile | |
components/bin/makeAll --mjs --terse --build components/mjs | |
pnpm -s cjs:compile | |
pnpm -s cjs:components:src:build | |
components/bin/makeAll --cjs --terse --build components/cjs | |
pnpm -s copy:pkg cjs | |
- name: Build tests | |
run: pnpm -s tsc -p testsuite/tsconfig.json | |
- name: Run tests | |
run: pnpm -s test:gh | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: mathjax/MathJax-src |