-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Error: Process completed with exit code 1 when using prettier-php #124
Comments
Getting similar issue here, v.4.3.
|
This is caused by breaking changes in prettier v3. Use the |
Thanks! It works with Prettier 2.8.8, which was the last version before 3.0. |
Run prettier v3 on your own source files first before looking to raise an issue elsewhere. |
Pinning prettier at version 2.8.8 has solved my issues, which looked like this when prettyfying solidity:
|
Suddenly, the prettier action started to fail for no aparent reason. The error message was: ``` Installing prettier... Checking plugin: prettier-plugin-solidity Prettifying files... Files: Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/archive/PersonalInviteOld.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/archive/PersonalInviteOld.t.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/AllowList.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/ContinuousFundraising.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/FeeSettings.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/interfaces/IFeeSettings.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/PersonalInvite.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/PersonalInviteFactory.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/Token.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/VestingWalletFactory.sol". docs/deployment.md 59ms docs/dev_overview.md 33ms docs/fees.md 27ms docs/npm_publishing.md 7ms docs/price.md 31ms docs/specification.md 114ms docs/testing.md 15ms docs/user_overview.md 45ms docs/using_the_contracts.md 51ms LICENSE.md 186ms README.md 45ms Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/script/CheckToken.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/script/DeployCompany.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/script/DeployPlatform.s.sol". script/hardhatVerifyConstructorArguments/ContinuousFundraising.js 52ms script/hardhatVerifyConstructorArguments/TokenGoerli.js 3ms script/hardhatVerifyConstructorArguments/TokenMainnet.js 2ms script/hardhatVerifyConstructorArguments/VestingWallet.js 3ms ``` It appears prettier v3 introduces some breaking changes, so I pinned version 2.8.8. See creyD/prettier_action#124
Suddenly, the prettier action started to fail for no aparent reason. The error message was: ``` Installing prettier... Checking plugin: prettier-plugin-solidity Prettifying files... Files: Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/archive/PersonalInviteOld.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/archive/PersonalInviteOld.t.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/AllowList.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/ContinuousFundraising.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/FeeSettings.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/interfaces/IFeeSettings.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/PersonalInvite.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/PersonalInviteFactory.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/Token.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/contracts/VestingWalletFactory.sol". docs/deployment.md 59ms docs/dev_overview.md 33ms docs/fees.md 27ms docs/npm_publishing.md 7ms docs/price.md 31ms docs/specification.md 114ms docs/testing.md 15ms docs/user_overview.md 45ms docs/using_the_contracts.md 51ms LICENSE.md 186ms README.md 45ms Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/script/CheckToken.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/script/DeployCompany.sol". Error: No parser could be inferred for file "/home/runner/work/tokenize.it-smart-contracts/tokenize.it-smart-contracts/script/DeployPlatform.s.sol". script/hardhatVerifyConstructorArguments/ContinuousFundraising.js 52ms script/hardhatVerifyConstructorArguments/TokenGoerli.js 3ms script/hardhatVerifyConstructorArguments/TokenMainnet.js 2ms script/hardhatVerifyConstructorArguments/VestingWallet.js 3ms ``` It appears prettier v3 introduces some breaking changes, so I pinned version 2.8.8. See creyD/prettier_action#124
This worked for a while but now I'm getting the same error again even after pinning Prettier to version 2.8. Does anyone have any workarounds or suggestions for fixing this? |
@rwrj If your prettier plugins have been updated to support Prettier v3+, then you either have to pin them too, or unpin Prettier. In the end, make sure you know exactly which versions of Prettier and your plugins are running on this Github workflow and using those versions replicate the issue on your localhost. Then you'll know what to do. |
@igitur Yes, it's possible that the PHP plugin has been updated. I tried unpinning Prettier but that didn't work either. How can I pin the version of prettier/plugin-php to 0.19.7? This seems to be the last version working with prettier 2.x - https://github.com/prettier/plugin-php/releases/tag/v0.19.7 I'm sorry if this is a silly question but I can't figure out how to set the version of the plugin in the workflow config. I've tried running this on my localhost and seem to be getting the same error but I'm not sure if I'm doing something else wrong there - I haven't worked much with node / npm before. |
@rwrj Specify the plugin npm package in this format: |
@igitur I got this set up and the Prettier PHP plugin is working fine on my local machine (Ubuntu 22.04 - which should be the same version being used in the GitHub Action) Any suggestions on how to proceed from here? Could this possible be an issue with the version of node being run? I see this warning on the GitHub Actions page with the failed run:- |
Update: This error seems to be gone now when running on the latest version of Prettier, however it gives the error |
What exactly happened?
Getting this error when running the action:
Error: Process completed with exit code 1.
This seems to be happening when initializing the prettier-php plugin
What should've happened?
Prettier should have run successfuly
How did it look?
Here is the full log from the run:-
Where did you encounter the problem?
When the action ran on making a push.
Here is my full configuration file for reference:-
The text was updated successfully, but these errors were encountered: