From 9a59c208bbbdc0359340084ed4fe25fe6b9eb020 Mon Sep 17 00:00:00 2001 From: nicolasstrands Date: Fri, 22 Mar 2024 14:07:51 +0400 Subject: [PATCH] Add Node.js setup and build steps --- .github/workflows/deploy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a78e37e..3325202 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,6 +31,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: "20" + - name: Build + run: | + npm install + npm run build - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact