From 1e7b824be9b4b6f50828dcd7b6cd5d0696781c96 Mon Sep 17 00:00:00 2001 From: Steven Crader Date: Sat, 17 Aug 2024 20:46:47 -0700 Subject: [PATCH] Update GitHub Action --- .github/workflows/lint.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4674156..b7c6480 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,10 +11,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set Node.js 16.x + - name: Enable Corepack + run: corepack enable + + - name: Set Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 20.x cache: "yarn" - name: Install project dependencies