From 9f2fee0e36a8a29381cc4780e30f93cf5feff9ce Mon Sep 17 00:00:00 2001 From: Mike Harder Date: Wed, 26 Feb 2025 23:12:25 -0800 Subject: [PATCH] Run tests on all LTS versions --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29f26da..c18b3a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,15 +13,17 @@ jobs: include: - os: ubuntu-latest target-folder: drop-linux + node-version: 18.x - os: windows-latest target-folder: drop + node-version: 22.x steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "20" + node-version: ${{ matrix.node-version }} - name: npm ci run: npm ci