diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4909f16..41c2f4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: "lts/*" - name: Install Packages run: npm install - name: Lint Files @@ -24,12 +24,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [21.x, 20.x, 19.x, 18.x, 17.x, 16.x, 14.x, 12.x, "12.22.0"] + node: [21.x, 20.x, 18.x, "18.18.0"] include: - os: windows-latest - node: "12.x" + node: "lts/*" - os: macOS-latest - node: "12.x" + node: "lts/*" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/package.json b/package.json index aa43e75..68700f3 100644 --- a/package.json +++ b/package.json @@ -77,6 +77,6 @@ "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }