Skip to content

Commit

Permalink
Adding Node.js 20 on workflows (#109)
Browse files Browse the repository at this point in the history
* adding workflow_dispatch action for manually triggering the workflows

* adding node version 20 for testing
  • Loading branch information
pacostas authored May 26, 2023
1 parent fb9170b commit 8a05144
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/nodejs-ci-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
build:
Expand All @@ -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
Expand Down

0 comments on commit 8a05144

Please sign in to comment.