From 23657c8550e9be4f7ee7e9d7fe8adda6d703bb4e Mon Sep 17 00:00:00 2001 From: hyesung oh Date: Sun, 16 Jun 2024 21:33:23 +0900 Subject: [PATCH] docs: change order of setup node and pnpm (#129) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 14c322a..aff3cb7 100644 --- a/README.md +++ b/README.md @@ -115,18 +115,18 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - - uses: pnpm/action-setup@v4 name: Install pnpm with: version: 8 run_install: false + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + - name: Get pnpm store directory shell: bash run: |