From 7dfa3ba4a29be89291b9cd6f4864e6ca751b99e1 Mon Sep 17 00:00:00 2001 From: Ludovic Muller Date: Tue, 17 Jun 2025 17:41:01 +0200 Subject: [PATCH] ci: use node lts --- .github/workflows/test.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8087276..c9f382b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,20 +11,14 @@ jobs: tests: runs-on: ubuntu-latest - strategy: - matrix: - node-version: - - 18 - - 20 - steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Set up Node.JS ${{ matrix.node-version }} + - name: Set up Node.JS uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: "lts/*" - name: Install dependencies run: npm ci