From ff395917d140b8631fbde4edefc63523144ef803 Mon Sep 17 00:00:00 2001 From: JayCanuck Date: Sun, 27 Oct 2024 18:36:10 -0700 Subject: [PATCH] Fix lint workflow --- .github/workflows/lint.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 614c246..daa544e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,17 +9,11 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 'lts/*' cache: 'npm' - run: npm ci - run: npm run lint