From 502fbc3d70e5ef32e288be34815e5696c05246fc Mon Sep 17 00:00:00 2001 From: Nelson Chan Date: Sat, 30 Mar 2024 04:50:06 +0800 Subject: [PATCH] Drop 14? --- .github/workflows/auto-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-test.yml b/.github/workflows/auto-test.yml index 09278e56..071cc7df 100644 --- a/.github/workflows/auto-test.yml +++ b/.github/workflows/auto-test.yml @@ -49,7 +49,7 @@ jobs: strategy: matrix: os: [ ARMv7 ] - node: [ 14, 20.5 ] + node: [ 16, 20.5 ] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: @@ -83,10 +83,10 @@ jobs: - run: git config --global core.autocrlf false # Mainly for Windows - uses: actions/checkout@v4 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v4 with: - node-version: 14 + node-version: 16 - run: npm ci - run: npm run build - run: npm run cy:test @@ -98,10 +98,10 @@ jobs: - run: git config --global core.autocrlf false # Mainly for Windows - uses: actions/checkout@v4 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v4 with: - node-version: 14 + node-version: 16 - run: npm ci - run: npm run build - run: npm run cy:run:unit