From 093b914c38ec92cf70ad216b07e9ff1fbecd79a7 Mon Sep 17 00:00:00 2001 From: Craig Barnes Date: Tue, 17 Dec 2024 14:28:46 -0600 Subject: [PATCH] Update ci.yaml --- .github/workflows/ci.yaml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 77d0dc9..cbfff44 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,13 +4,14 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 - with: - node-version: 20 - - name: Setup npm - run: npm install -g npm@10.2.4 - - name: Install modules - run: npm ci - - name: Run ESLint - run: npm run lint + - uses: actions/checkout@v2 + - uses: actions/setup-node@v4.1.0 + with: + node-version: 20.17.0 + - name: Get Version + run: npm -v + - name: Install modules + + run: npm ci + - name: Run ESLint + run: npm run lint