From 70b3557c09c0e68dbc33cfa858d7c6bad64153cf Mon Sep 17 00:00:00 2001 From: Adam Joseph Arling Date: Mon, 31 Jul 2023 14:04:06 -0500 Subject: [PATCH] Update Github Actions workflow file to use PNPM --- .github/workflows/deploy.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 54fd3262b..da8941f9e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,22 +16,25 @@ jobs: steps: - name: Get files - uses: actions/checkout@v2 + uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + with: + version: 8 - name: Setup NodeJS uses: actions/setup-node@v3 with: node-version: "lts/*" - cache: npm + cache: pnpm - name: Install packages run: npm ci - name: Build Site Navigation - run: npm run build-site-nav + run: pnpm run build-site-nav - name: Export static files - run: npm run build + run: pnpm run build - name: Add .nojekyll file run: touch ./out/.nojekyll