From b8eded760892aa5642462f44404926ff5226a031 Mon Sep 17 00:00:00 2001 From: Jay Laura <jlaura@usgs.gov> Date: Mon, 12 Sep 2022 06:57:10 -0700 Subject: [PATCH] Updates CI to split build and dependency install --- .github/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9675249..caae995 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,8 +38,13 @@ jobs: - name: Setup Hugo uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 17.3.0 run: npm install + + - name: Build Site + uses: actions/setup-node@v3 + with: + node-version: 17.3.0 run: npm run build - name: Set AWS credentials for upload -- GitLab