Skip to content

Commit e5c8b1b

Browse files
committed
WIP
1 parent 3c15463 commit e5c8b1b

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,9 @@ runs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v5
14+
- name: Execute some javascript
15+
uses: actions/github-script@v8
16+
with:
17+
script: |
18+
const script = require("${{github.action_path}}/dist/index.js")
19+
script({core})

index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function(core) {
2+
console.log("fsdoo")
3+
}

0 commit comments

Comments
 (0)