From bdf7782a601d7106532a8d1f1109c65af98956a2 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Mon, 1 Apr 2024 12:08:47 +0800 Subject: [PATCH] Update lint.yml to use Node.js v20 --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bc4f6f4..3e93aeb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,8 +13,8 @@ jobs: - name: 'Setup Node' uses: 'actions/setup-node@v3' with: - node-version: 18 + node-version: 20 - name: 'Install Node modules' run: 'npm ci' - name: 'Run lint' - run: 'npm run lint' \ No newline at end of file + run: 'npm run lint'