Skip to content

pnpm cache

pnpm cache #344

Workflow file for this run

name: pnpm cache
on:
workflow_dispatch:
schedule:
# Run every day at 01:00 UTC
- cron: '0 1 * * *'
jobs:
create-cache:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: '20'
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
- name: Get pnpm cache info
id: pnpm-cache
run: |
echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
echo "date=$(/bin/date -u "+%Y-%m-%d")" >> $GITHUB_OUTPUT
- name: pnpm install
run: pnpm install
- name: Save pnpm cache
uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: ${{ steps.pnpm-cache.outputs.store }}
key: ${{ runner.os }}-pnpm-store-cache-${{ steps.pnpm-cache.outputs.date }}