Skip to content

Commit

Permalink
Merge pull request #1 from awdware/nodeversion
Browse files Browse the repository at this point in the history
chore: added node version param
  • Loading branch information
LoaderB0T authored Oct 4, 2024
2 parents f90a132 + aa1cfaa commit cb42d77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ on:
run-tests:
type: boolean
default: true
node-versions:
type: string
default: "['18.x', '19.x', '20.x']"

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 19.x, 20.x]
node-version: ${{ fromJSON(inputs.node-versions) }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit cb42d77

Please sign in to comment.