1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

test case w/ using:node24

This commit is contained in:
Mathieu Fenniak 2025-08-11 09:55:37 -06:00
parent 7ff3f7da0f
commit 5282c51b3c
3 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,5 @@
name: 'using node24 action'
description: 'An action that has using:node24'
runs:
using: 'node24'
main: 'index.js'

View file

@ -0,0 +1,3 @@
// Note that the runner does not actually invoke different versions of node depending on the `using` tag, so this output
// isn't checked/asserted to ensure that the right version is in-use. It might as well be an empty script.
console.log('Current node.js version:', process.versions.node);

View file

@ -10,3 +10,4 @@ jobs:
- uses: ./actions/node20 - uses: ./actions/node20
with: with:
who-to-greet: 'Mona the Octocat' who-to-greet: 'Mona the Octocat'
- uses: ./actions/node24