From cc9dfe71200543da0d0494e9bb79a060131be82e Mon Sep 17 00:00:00 2001 From: Aaron Kanzer Date: Fri, 20 Sep 2024 11:16:12 -0400 Subject: [PATCH] include buuidd --- .github/workflows/deploy_preview.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index cce36b881..158c96df7 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -28,11 +28,17 @@ jobs: with: ref: ${{ github.event.inputs.commit_sha || github.sha }} + - name: Install Dependencies + uses: actions/setup-node@v4 + with: + node-version: 20.x + run: npm install + - name: Build Project - run: | - npm run build - pwd - ls + uses: actions/setup-node@v4 + with: + node-version: 20.x + run: npm run build - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1