Merge pull request #668 from btat/no-minify

Don't minify when building
This commit is contained in:
Billy Tat
2023-06-06 10:05:56 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
run: yarn build --no-minify
# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus

View File

@@ -21,4 +21,4 @@ jobs:
- name: Check links
run: yarn run remark --quiet --use remark-validate-links --use remark-lint-no-dead-urls ./docs
- name: Test build website
run: yarn build
run: yarn build --no-minify