From 55366de1f288cebec27e3c298518bba1036fcd43 Mon Sep 17 00:00:00 2001 From: Tuan Pham Date: Thu, 13 Jul 2023 10:19:56 +0700 Subject: [PATCH] build: fix license job --- .github/workflows/license.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index 5f7b517330..b521d06b82 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -19,6 +19,15 @@ jobs: - name: Check out repository uses: actions/checkout@v3 + + - name: Use Node.js 16.x + uses: actions/setup-node@v3 + with: + node-version: 16.x + + - name: Install pnpm + run: npm install -g pnpm@8.6.5 + - name: Install Node modules run: pnpm install --frozen-lockfile @@ -44,6 +53,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16.x + - name: Install pnpm run: npm install -g pnpm@8.6.5