diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index aabf07d..d600067 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -21,7 +21,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 20 - cache: 'pnpm' + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9f81799..904b277 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 20 - cache: 'pnpm' + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b820791..fcb02ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,31 +17,19 @@ jobs: with: fetch-depth: 0 - - name: Install Node.js 20 + - name: Pnpm setup + uses: pnpm/action-setup@v2 + with: + version: 8.10 + + - name: Use Node.js 20 uses: actions/setup-node@v3 with: node-version: 20 + cache: pnpm - - uses: pnpm/action-setup@v2 - name: Install pnpm - id: pnpm-install - with: - version: 8.10.0 - run_install: false - - - name: Get pnpm store directory - id: pnpm-cache - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - - uses: actions/cache@v3 - name: Setup pnpm cache - with: - path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: Install dependencies run: pnpm install --frozen-lockfile