committed by
GitHub
14 changed files with 99 additions and 104 deletions
@ -0,0 +1,40 @@ |
|||
name: "Setup Node" |
|||
|
|||
description: "Setup node and pnpm" |
|||
|
|||
runs: |
|||
using: "composite" |
|||
steps: |
|||
- name: Install pnpm |
|||
uses: pnpm/action-setup@v4 |
|||
|
|||
- name: Install Node.js |
|||
uses: actions/setup-node@v4 |
|||
with: |
|||
node-version-file: .node-version |
|||
cache: "pnpm" |
|||
|
|||
- name: Get pnpm store directory |
|||
shell: bash |
|||
run: | |
|||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV |
|||
|
|||
- uses: actions/cache@v4 |
|||
name: Setup pnpm cache |
|||
if: ${{ github.ref_name == 'main' }} |
|||
with: |
|||
path: ${{ env.STORE_PATH }} |
|||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} |
|||
restore-keys: | |
|||
${{ runner.os }}-pnpm-store- |
|||
|
|||
- uses: actions/cache/restore@v4 |
|||
if: ${{ github.ref_name != 'main' }} |
|||
with: |
|||
path: ${{ env.STORE_PATH }} |
|||
key: | |
|||
${{ runner.os }}-pnpm-store- |
|||
|
|||
- name: Install dependencies |
|||
shell: bash |
|||
run: pnpm install --frozen-lockfile |
|||
@ -1 +1 @@ |
|||
20 |
|||
20.14.0 |
|||
|
|||
Loading…
Reference in new issue