streetsidesoftware / cspell-action

GitHub Action: Check Spelling
MIT License
79 stars 9 forks source link

Usage with nektos/act #1805

Open tcodes0 opened 3 weeks ago

tcodes0 commented 3 weeks ago

When using nektos/act to run the action locally in a container environment, the action fails to find any files to lint and reports a success. I tried using a .sh script to call cspell . instead of the action and the problem seems to persist. Attaching the logs I have from act. The symptoms are similar to #187 #182

[main/spellcheck            ] 🚀  Start image=catthehacker/ubuntu:act-latest
[main/spellcheck            ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform=linux/amd64 username= forcePull=true
[main/spellcheck            ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform=linux/amd64 entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[main/spellcheck            ]   🐳  docker run image=catthehacker/ubuntu:act-latest platform=linux/amd64 entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[main/spellcheck            ]   ☁  git clone 'https://github.com/streetsidesoftware/cspell-action' # ref=v6.4.0
[main/spellcheck            ] ⭐ Run Main Checkout
[main/spellcheck            ]   🐳  docker cp src=/home/vacation/Desktop/tcodes0-go/. dst=/home/vacation/Desktop/tcodes0-go
[main/spellcheck            ]   ✅  Success - Main Checkout
[main/spellcheck            ] ⭐ Run Main Cspell
[main/spellcheck            ]   🐳  docker cp src=/home/vacation/.cache/act/streetsidesoftware-cspell-action@v6.4.0/ dst=/var/run/act/actions/streetsidesoftware-cspell-action@v6.4.0/
[main/spellcheck            ]   🐳  docker exec cmd=[node /var/run/act/actions/streetsidesoftware-cspell-action@v6.4.0/action/lib/main_root.cjs] user= workdir=
[main/spellcheck            ]   | cspell-action
[main/spellcheck            ]   | Push
[main/spellcheck            ]   | Files checked: 0, Issues found: 0 in 0 files.
[main/spellcheck            ]   | Done.
[main/spellcheck            ]   ✅  Success - Main Cspell
[main/spellcheck            ]   ⚙  ::set-output:: number_of_files_with_issues=0
[main/spellcheck            ]   ⚙  ::set-output:: files_with_issues=[]
[main/spellcheck            ]   ⚙  ::set-output:: result={"success":true,"number_of_issues":0,"number_of_files_checked":0,"files_with_issues":[]}
[main/spellcheck            ]   ⚙  ::set-output:: success=true
[main/spellcheck            ]   ⚙  ::set-output:: number_of_files_checked=0
[main/spellcheck            ]   ⚙  ::set-output:: number_of_issues=0
[main/spellcheck            ] Cleaning up container for job spellcheck
[main/spellcheck            ] 🏁  Job succeeded

happy to close/move if this is not related to the action but cspell itself.

Jason3S commented 3 weeks ago

@tcodes0,

Please include a copy of the workflow.

I have not tried nektos/act, but I will check it out.

Since it doesn't think any files have changed -- Files checked: 0, Issues found: 0 in 0 files. -- it doesn't think it has anything to do. I'm guessing you need to set incremental_files_only to false, since the action is expecting the GitHub workflow to tell it what files have changed.

What happens when you run cspell . locally?