From 0e4ab2b233a8c97eed7007c51ad0f35bd39c951d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 06:15:25 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump @types/lodash from 4.17.12 to 4.17.13 Bumps [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) from 4.17.12 to 4.17.13. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash) --- updated-dependencies: - dependency-name: "@types/lodash" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 276a57f..1c1f4a9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4290,9 +4290,9 @@ __metadata: linkType: hard "@types/lodash@npm:^4": - version: 4.17.12 - resolution: "@types/lodash@npm:4.17.12" - checksum: 10/3d829f97c0ea713135e6eb48e983feffb315f4cf228d03654ca8a328e3fecd03005bf7dd30bf411f4306967c610d96738d441588283a41456815f2ce1fd7044c + version: 4.17.13 + resolution: "@types/lodash@npm:4.17.13" + checksum: 10/ddb34e20810c71be2d9445bcc4b64ec25b83976738454de709854b79c7f655b03704b76235445699956d65012987720e0e429a35489de65495cdb5420202d905 languageName: node linkType: hard From ad091ec8e54d7c320701b3bbb567866f68d7821e Mon Sep 17 00:00:00 2001 From: Hugo Tiburtino <45924645+hugotiburtino@users.noreply.github.com> Date: Tue, 26 Nov 2024 19:27:38 +0100 Subject: [PATCH 2/2] chore(ci): fix timout issue --- .github/workflows/checks.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index d953588..a068ab0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -47,15 +47,7 @@ jobs: - run: yarn install - run: yarn build - run: yarn dev:databases -d - # Run `yarn start` in background (otherwise it would block) - - run: | - nohup yarn start & - echo $! > app.pid + - run: yarn start & - run: yarn playwright install - run: yarn wait-for-server - run: HEADLESS=true yarn test - # End background process - - run: | - if [ -f app.pid ]; then - kill -9 $(cat app.pid) || echo "App already stopped" - fi