diff --git a/.github/workflows/ci.js.yml b/.github/workflows/ci.js.yml index 827695d..18ad23c 100644 --- a/.github/workflows/ci.js.yml +++ b/.github/workflows/ci.js.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js LTS (14.x) + - name: Use Node.js LTS (16.x) uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 16.x - name: Install project dependencies run: yarn install --frozen-lockfile --ignore-scripts @@ -29,7 +29,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 15.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/pr.ci.js.yml b/.github/workflows/pr.ci.js.yml index 4b60a0e..9c064b1 100644 --- a/.github/workflows/pr.ci.js.yml +++ b/.github/workflows/pr.ci.js.yml @@ -13,10 +13,10 @@ jobs: - name: Checkout PR uses: actions/checkout@v2 - - name: Use Node.js LTS (14.x) + - name: Use Node.js LTS (16.x) uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 16.x - name: Install project dependencies run: yarn install --frozen-lockfile --ignore-scripts @@ -29,7 +29,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 15.x] + node-version: [16.x, 18.x] steps: - name: Checkout PR