From c2d1a900a76cc45add13fa292c66983c5b4796f4 Mon Sep 17 00:00:00 2001 From: Valentin Laurin Date: Thu, 24 Nov 2022 13:34:49 +0000 Subject: [PATCH] Upgrade to Node 18 And drop support for Node 12 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8a434c..272f18d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 5 strategy: matrix: - node: [ 12, 14, 16 ] + node: [ 14, 16, 18 ] steps: - name: Checkout uses: actions/checkout@v2.4.0 @@ -41,10 +41,10 @@ jobs: - name: Checkout uses: actions/checkout@v2.4.0 - - name: Setup NodeJS 14 + - name: Setup NodeJS 18 uses: actions/setup-node@v2.5.1 with: - node-version: '14' + node-version: '18' cache: 'npm' - name: Audit dependencies @@ -78,10 +78,10 @@ jobs: - name: Checkout uses: actions/checkout@v2.4.0 - - name: Setup NodeJS 14 + - name: Setup NodeJS 18 uses: actions/setup-node@v2.5.1 with: - node-version: '14' + node-version: '18' cache: 'npm' registry-url: https://registry.npmjs.org scope: '@quickcase'