summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLyssa2026-01-09 12:29:43 +0000
committerLyssa2026-01-09 12:29:43 +0000
commitfd538b739e20023bf1e2b2e5cb546ecffdb4eacf (patch)
treebf2ed3ea26b578a96337ef7bc2e236b240b3ec15 /.github
parent82ff792c9481a786de4eb7af61c6da96fa46a995 (diff)
downloadmassgrave.dev-fd538b739e20023bf1e2b2e5cb546ecffdb4eacf.zip
Switch from npm to yarn and enable experimental Docusaurus optimizations
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 1812734..82ee662 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -16,12 +16,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- cache: npm
+ cache: yarn
- name: Install dependencies
- run: npm ci
+ run: yarn install --frozen-lockfile
- name: Build website
- run: npm run build
+ run: yarn build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3