mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-08 02:52:39 -05:00
Fixed signup-form-tests GitHub workflow
refs https://ghost.slack.com/archives/C02G9E68C/p1685446707169999 - `actions/setup-node` has a bug where it doesn't parse paths where the path is pretty-printed with colors, so we have to explicitly disable colors - Added whitespace change inside signup-form to trigger new CI run
This commit is contained in:
parent
dabd0181bb
commit
ced0a3e792
2 changed files with 3 additions and 0 deletions
2
.github/workflows/signup-form-tests.yml
vendored
2
.github/workflows/signup-form-tests.yml
vendored
|
@ -24,6 +24,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
env:
|
||||
FORCE_COLOR: 0
|
||||
with:
|
||||
node-version: "16.13.0"
|
||||
cache: yarn
|
||||
|
|
|
@ -26,6 +26,7 @@ export async function initialize({page, ...options}: {page: any; title?: string,
|
|||
}
|
||||
document.body.appendChild(scriptTag);
|
||||
}, {url, options});
|
||||
|
||||
await page.waitForSelector('iframe');
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue