sancarn / stdVBA

VBA Standard Library - A Collection of libraries to form a common standard layer for modern VBA applications.
MIT License
294 stars 58 forks source link

Use GitHub Action instead of a filter for CRLF normalization #106

Closed DecimalTurn closed 3 months ago

DecimalTurn commented 3 months ago

Follow up on https://github.com/sancarn/stdVBA/pull/77#issuecomment-2233084783

This PR uses the following GitHub action to perform the CRLF line normalization for .bas, .frm and .cls files: https://github.com/marketplace/actions/enforce-crlf

I'm using the hash of the version instead of the version itself as recommended here. Also, by using do-checkout: true and do-push: true the action will perform the checkout and commit action by itself.

DecimalTurn commented 3 months ago

First run of the action took 17 sec, but should be faster on future uses, since the package tofrodos (To and From DOS) is now cached.

sancarn commented 3 months ago

Thanks as always @DecimalTurn