From 78b243c881414f8da5469a9fa609f2061a5cccf6 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 2 Jun 2022 00:47:40 +0200 Subject: [PATCH] ci: test on all supported Node.js versions (#116) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8677ad..7f42fab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,11 @@ jobs: steps: - uses: actions/checkout@v3 - with: - fetch-depth: 2 - uses: actions/setup-node@v3 with: - node-version: 14 - + node-version: lts/* + - name: Get the Yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(corepack yarn config get cacheFolder)" @@ -46,6 +44,8 @@ jobs: matrix: node: - 14 + - 16 + - 18 platform: - ubuntu-latest - macos-latest