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