From 44aa529c89405a424aa58c0853b5ec2e3c826609 Mon Sep 17 00:00:00 2001 From: Christopher King Date: Thu, 19 Sep 2024 12:18:06 -0600 Subject: [PATCH] Updated the github build actions for pnpm --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8035594..97d1650 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x] + node-version: [16.x, 18.x, 20.x] steps: - name: Checkout uses: actions/checkout@v3 @@ -18,7 +18,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install pnpm - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v4.0.0 with: version: 7 run_install: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3d597da..febb5c8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,14 +12,14 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v3 with: - node-version: '14.x' + node-version: '16.x' registry-url: 'https://registry.npmjs.org' - name: Install pnpm - uses: pnpm/action-setup@v2.2.2 + uses: pnpm/action-setup@4.0.0 with: version: 7 run_install: |