From 8f77cb963e57c0763231b3e57fbeb1778fdad44c Mon Sep 17 00:00:00 2001 From: Erik Onarheim Date: Fri, 16 Feb 2024 09:41:26 -0600 Subject: [PATCH] update gh action --- .github/workflows/node.js.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 68894bf1..0a7f6bc1 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -11,18 +11,12 @@ on: jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [20.x] - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 'lts/*' - run: npm ci - run: npm test