From 3ee2486d1e69d9936ac0ce52df0d0e3c4e1e93db Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Mon, 2 Jun 2025 22:36:29 -0400 Subject: [PATCH] Use node rather than deno --- .github/workflows/astro.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/astro.yml b/.github/workflows/astro.yml index e584bc4..4f59437 100644 --- a/.github/workflows/astro.yml +++ b/.github/workflows/astro.yml @@ -21,15 +21,16 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 + - name: Setup Node + uses: actions/setup-node@v4 with: - deno-version: v2.1.5 + node-version: "20" - name: Install dependencies - run: deno i + run: npm i - name: Build with Astro - run: deno run astro build + run: npm run astro build - name: Upload artifact uses: actions/upload-pages-artifact@v3