From 4c33eb4d8ea3ab021b71a65584d0a573ea8ea717 Mon Sep 17 00:00:00 2001 From: Artem Vasilev Date: Thu, 10 Nov 2022 15:25:58 +0300 Subject: [PATCH] run test on node 16 and LTS (18) --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b55097b..d244428 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [ lts/* ] + node-version: [ 16, lts/* ] steps: - uses: actions/checkout@v3 @@ -33,10 +33,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Use Node.js latest + - name: Use Node.js LTS uses: actions/setup-node@v3 with: - node-version: latest + node-version: lts/* - name: Clean install, lint run: | npm ci