We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e824ce commit de0dc16Copy full SHA for de0dc16
action.yml
@@ -2,8 +2,8 @@ name: 'sort problem matcher'
2
author: 'Peter Newman'
3
description: 'Shows GNU sort errors as annotation (with file and code line) in GitHub Actions'
4
runs:
5
- using: 'bash'
6
- main: 'add-matcher.sh'
+ using: 'node12'
+ main: 'index.js'
7
branding:
8
icon: 'check-square'
9
color: 'green'
add-matcher.sh
index.js
@@ -0,0 +1,2 @@
1
+#!/usr/bin/env node
+console.log(`::add-matcher::${__dirname}/sort-matcher.json`);
0 commit comments