Peter Hewat
Peter Hewat
@nathany Is there a better way? Yes using the environement to store your version: ```yml - name: Get version run: echo ::set-env name=version::$(cat VERSION) ``` Then: ```yml - name: Create...
PS: In my case, the version is stored inside my package.json and since I use actions/setup-node@v1, I extract the version like this: ```yml run: echo ::set-env name=version::$(node -pe "require('./package.json').version") ```
For all you +1 and bump comments out there (and those that react to those +1s), as @dennissivia mentioned, they are useless. Just give a 👍 **TO THE ORIGINAL POST**...
Vulnerability still an issue: https://github.com/advisories/GHSA-h755-8qp9-cq85
Indeed, that would be interesting. I guess you would have to detect if there is an active overflow after a reflow with something like: ```js function isEllipsisActive(e) { return (e.offsetWidth...
Hi all, I have the same issue and have done what @mxschmitt suggested: I have a base.fixture.ts with: ```ts ... // Prevent snapshots from using browser and platform name in...
Hello, we are also having this issue. Tests are always running inside the same environement (GitHub Action Linux Chrome headless) ``` Expected an image 344px by 335px, received 344px by...