From 339a80c73ff22f9980224f168d761c9a5a6f7fb7 Mon Sep 17 00:00:00 2001 From: Bobbie Goede Date: Thu, 20 Feb 2025 14:49:21 +0100 Subject: [PATCH] ci: use pnpm in github actions --- .github/workflows/build.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e199dff..45227855 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,8 +27,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Enable corepack - run: corepack enable + - name: Install pnpm + uses: pnpm/action-setup@v4 - name: Setup Node.js ${{ matrix.node }} uses: actions/setup-node@v4 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9b1b0ce0..6505d8ac 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,8 +27,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Enable corepack - run: corepack enable + - name: Install pnpm + uses: pnpm/action-setup@v4 - name: Setup Node.js ${{ matrix.node }} uses: actions/setup-node@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 65781a47..eae277b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,8 +27,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Enable corepack - run: corepack enable + - name: Install pnpm + uses: pnpm/action-setup@v4 - name: Setup Node.js ${{ matrix.node }} uses: actions/setup-node@v4