Skip to content

Commit ade03ee

Browse files
committed
Fix MODULE_NOT_FOUND
By default the working directory of the composite action is the calling workflows's context. This means a relative require like what was done here isn't reading the action's main.yml. This wasn't caught during testing because GHA requires one to check the testing repo out before being able to run a local action. This masked the behavior. I believe it was missed in the integration tests because those were tested when the main.js was _embedded_ in the action.yml. Hilarious.
1 parent cfde6ad commit ade03ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ runs:
4545
with:
4646
# github-token: uncomment-this-line-for-local-act-testing
4747
script: |
48-
return require('./main.js')({context, core})
48+
return require(process.env.GITHUB_ACTION_PATH + '/main.js')({context, core})
4949
- name: Send Status
5050
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844 # v1.23.0
5151
env:

0 commit comments

Comments
 (0)