From 794de7641da3aca6aabb53f8735aac01f6e240fd Mon Sep 17 00:00:00 2001 From: Billy Tat Date: Mon, 5 Jun 2023 20:59:47 -0700 Subject: [PATCH] Don't minify when building --- .github/workflows/deploy.yml | 2 +- .github/workflows/test-deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c906e004dcd..3e135dedab1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 2de7db094d2..775f77dfc24 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -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 \ No newline at end of file + run: yarn build --no-minify \ No newline at end of file