From c5688331eee875a4e98a49c18883290ab30b00fb Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Wed, 7 Dec 2022 00:47:43 +0900 Subject: [PATCH] Use cache in check-dist.yml Signed-off-by: jongwooo --- .github/workflows/check-dist.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 01ca805..3bf31dc 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -25,9 +25,10 @@ jobs: - uses: actions/checkout@v3 - name: Set Node.js 16.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.x + cache: npm - name: Install dependencies run: npm ci