Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ outputs:
runs:
using: node24
main: src/action.mjs
branding:
icon: check-circle
color: blue
3 changes: 2 additions & 1 deletion test/action.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function parseGithubOutput(text) {
return values;
}

test('action metadata uses Node 24 and declares the complete input/output surface', async () => {
test('action metadata uses Node 24 and declares the complete Marketplace surface', async () => {
const source = await readFile(new URL('../action.yml', import.meta.url), 'utf8');

assert.match(source, /^name:/m);
Expand All @@ -109,6 +109,7 @@ test('action metadata uses Node 24 and declares the complete input/output surfac
}
assert.match(source, /^ using: node24$/m);
assert.match(source, /^ main: src\/action\.mjs$/m);
assert.match(source, /^branding:\n icon: check-circle\n color: blue$/m);
});

test('action delegates all inputs and publishes multiline-safe receipt outputs', async (t) => {
Expand Down