fix: load typst.ts wasm when open page #6
This file contains 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: Build Frontend and Commit | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'typress/app/frontend/**' | |
pull_request: | |
paths: | |
- 'typress/app/frontend/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Install dependencies | |
working-directory: typress/app/frontend | |
run: pnpm install | |
- name: Build the project | |
working-directory: typress/app/frontend | |
run: pnpm build | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
cd typress/app/frontend | |
git add dist/* -f | |
git commit -m "bot: Build and commit frontend dist files" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |