From 7e8ee6afa4b27621029cd1ee1083cb7507a2889e Mon Sep 17 00:00:00 2001 From: Yiming Luo Date: Tue, 21 Jan 2025 15:59:44 -0500 Subject: [PATCH] chore: Remove Node.js 16 support --- .github/workflows/build.yml | 14 +++++++------- .github/workflows/integration_tests.yml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d41fa385..156d3cf7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,16 +11,16 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set up Node 16 + - name: Set up Node 18 uses: actions/setup-node@v1 with: - node-version: 16 - + node-version: 18 + - name: Cache Node modules id: cache-node-modules uses: actions/cache@v2 with: - path: '**/node_modules' + path: "**/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.working-dir }} - name: Install dependencies @@ -48,7 +48,7 @@ jobs: strategy: max-parallel: 4 matrix: - node-version: [16, 18, 20] + node-version: [18, 20] steps: - name: Checkout @@ -63,9 +63,9 @@ jobs: id: cache-node-modules uses: actions/cache@v2 with: - path: '**/node_modules' + path: "**/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.working-dir }} - + - name: Install common dependencies working-directory: ./ run: yarn install diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 5be7982f..f2ba39f9 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -11,10 +11,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set up Node 16 + - name: Set up Node 18 uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 18 - name: Cache Node modules id: cache-node-modules