From e69d4838eb13dbb515d7fdbb746b238fc7708c00 Mon Sep 17 00:00:00 2001 From: Jeppe Reinhold Date: Sun, 26 May 2024 21:43:19 +0200 Subject: [PATCH] fix pnpm version in CI --- .github/workflows/chromatic.yml | 6 +++++- .github/workflows/release.yml | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index abe26ee..55dc216 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -7,15 +7,19 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 + - name: Install Node.js uses: actions/setup-node@v3 with: node-version: 20 + cache: 'pnpm' + - name: Install dependencies uses: pnpm/action-setup@v2 with: - version: 8 + version: 9 run_install: true + - name: Publish to Chromatic uses: chromaui/action@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea6cfd0..53ebceb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,11 +21,12 @@ jobs: uses: actions/setup-node@v3 with: node-version: 20.x + cache: 'pnpm' - name: Install dependencies uses: pnpm/action-setup@v2 with: - version: 8 + version: 9 run_install: true - name: Create Release