From fb50fbcfc33523461e4a197afb42e593f58129b0 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Sun, 19 Feb 2023 08:15:39 +0530 Subject: [PATCH 1/3] ci: use LTS node version in workflows --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ad5ab3a238..b7ecf532e32 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 @@ -65,7 +65,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: 'lts/*' - name: Install Packages run: npm install - name: Test From 0cc80ca3f373585a536ad63fc8fe4655a39869b0 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Sun, 19 Feb 2023 08:58:56 +0530 Subject: [PATCH 2/3] ci: use LTS version of Node.js --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7ecf532e32..ab3070924f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 From 08b849309f5b18f6be13a4ec30075d1a57f649dd Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Sun, 19 Feb 2023 09:23:52 +0530 Subject: [PATCH 3/3] ci: use node 16 for browser test --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab3070924f1..4b630a88f14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 'lts/*' + node-version: '16' - name: Install Packages run: npm install - name: Test