From d548ed429e56866d7624067ed98dd97bafe64542 Mon Sep 17 00:00:00 2001 From: Vladimir Rodkin Date: Tue, 15 Nov 2022 23:36:21 +0300 Subject: [PATCH] ci(gh-actions): Drop support Node.js v10, v12 and v15; Add Node.js v16, v18 and v19 --- .github/workflows/test-workflow.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml index 4983d78..85a88e1 100644 --- a/.github/workflows/test-workflow.yml +++ b/.github/workflows/test-workflow.yml @@ -8,16 +8,16 @@ jobs: strategy: matrix: node-version: - - 15 + - 19 + - 18 + - 16 - 14 - - 12 - - 10 steps: - name: Check out the repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}