fix: unordered lists with using quill will show as ordered (#944) #1644
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: Bundlewatch | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
workflow_dispatch: | |
env: | |
# check production bundle sizes | |
VITE_APP_ENV: production | |
FORCE_COLOR: 2 | |
NODE: 20 | |
CI_REPO_OWNER: umn-latis | |
CI_REPO_NAME: chimein2.0 | |
jobs: | |
bundlewatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: "${{ env.NODE }}" | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Run dist | |
run: npm run build | |
- name: Run bundlewatch | |
run: npm run bundlewatch | |
env: | |
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}" | |
CI_BRANCH_BASE: develop |