From da728fae6c4e5fdda74195e84d45d67ad5cafc45 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Sun, 19 Feb 2023 17:53:28 +0530 Subject: [PATCH] ci: use LTS node version in workflows (#16907) * ci: use LTS node version in workflows * ci: use LTS version of Node.js * ci: use node 16 for browser test --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ad5ab3a238..4b630a88f14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,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 @@ -42,9 +42,9 @@ jobs: node: [19.x, 18.x, 17.x, 16.x, 14.x, 12.x, "12.22.0"] include: - os: windows-latest - node: "16.x" + node: "lts/*" - os: macOS-latest - node: "16.x" + node: "lts/*" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3