Skip to content

Commit cfae69a

Browse files
committed
feat: checkout repo in action
1 parent f60d9f5 commit cfae69a

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

action.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,15 @@ inputs:
4141
default: true
4242

4343
runs:
44-
using: node20
45-
main: dist/index.js
44+
using: 'composite'
45+
steps:
46+
- name: Checkout
47+
uses: actions/checkout@v4
48+
49+
- name: Setup Node.js
50+
uses: actions/setup-node@v4
51+
with:
52+
node-version: 20
53+
54+
- name: Run Action
55+
run: node dist/index.js

0 commit comments

Comments
 (0)