Anatoly Leskovets
Anatoly Leskovets
**Problem** I'm running podman as my container tool and it works differently than Docker. When I try to run the container, I got the following: ``` chown: changing ownership of...
ASCII Control characters inside the email are not failing the validation: ASCII control characters: https://www.december.com/html/spec/ascii.html The regex to try: `/[^\x00-\x1F]/.test(email)` `expect(validator.isValid('joeblow @apache.org')).toBeFalsy();` // passes (as expected) `expect(validator.isValid('joeblow@apache.org')).toBeFalsy();` // fails `expect(validator.isValid('joeblow\[email protected]')).toBeFalsy();`...
Prompted by: https://github.com/actions/runner-container-hooks/issues/82#issuecomment-2140089101 Some of the storage systems are slow when it comes to copy files, especially when the number of files is high. As the part of every prepare...
Jest allows root directory `` string token to be specified for path configurations. This fix allows this variable to be resolved into `path.dirname(configPath)`. Fixes #22