From b22849d26ecc5fa4d714ff56871b9943cf4fed6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=8F=E3=83=B3=20/=20Han?= <16288797+hannoeru@users.noreply.github.com> Date: Tue, 19 Jul 2022 17:29:52 +0900 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c033323..e6f1e5a 100644 --- a/README.md +++ b/README.md @@ -99,17 +99,17 @@ steps: - name: Checkout Repo uses: actions/checkout@v3 + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 7 + - name: Install Node.js uses: actions/setup-node@v3 with: node-version: 16 cache: pnpm - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 7 - - name: Install Dependencies run: pnpm install ```