From 8a0514490b86872ed2d905695ebfdbda752c795f Mon Sep 17 00:00:00 2001 From: Costas Papastathis Date: Sat, 27 May 2023 00:20:32 +0300 Subject: [PATCH] Adding Node.js 20 on workflows (#109) * adding workflow_dispatch action for manually triggering the workflows * adding node version 20 for testing --- .github/workflows/nodejs-ci-action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index 2b2066b..e40aa63 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -5,6 +5,7 @@ on: branches: [ main ] pull_request: branches: [ main ] + workflow_dispatch: jobs: build: @@ -13,7 +14,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [14.x, 16.x, 18.x, 20.x] steps: - uses: actions/checkout@v3