From ea3c544bcbf5a234443f9629a25dfba1fc5e1562 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 3 Nov 2023 10:48:51 -0400 Subject: [PATCH] chore(ci): core prerelease builds with pnpm --- .../actions/build-core-stencil-prerelease/action.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions/build-core-stencil-prerelease/action.yml b/.github/workflows/actions/build-core-stencil-prerelease/action.yml index 425ce239e1..b52c07f5ac 100644 --- a/.github/workflows/actions/build-core-stencil-prerelease/action.yml +++ b/.github/workflows/actions/build-core-stencil-prerelease/action.yml @@ -12,17 +12,19 @@ runs: - uses: actions/setup-node@v3 with: node-version: 18.x - + - uses: pnpm/action-setup@v2 + with: + version: 8 - name: Install Dependencies - run: npm ci + run: pnpm install working-directory: ./core shell: bash - name: Install Stencil ${{ inputs.stencil-version }} working-directory: ./core - run: npm i @stencil/core@${{ inputs.stencil-version }} + run: pnpm i @stencil/core@${{ inputs.stencil-version }} shell: bash - name: Build Core - run: npm run build -- --ci + run: pnpm run build -- --ci working-directory: ./core shell: bash - uses: ./.github/workflows/actions/upload-archive