From 2e257d3bb2071276f525503a8105261c889865dc Mon Sep 17 00:00:00 2001 From: Neshura Date: Tue, 2 Jan 2024 03:02:56 +0100 Subject: [PATCH] Fix bash process spawning --- .forgejo/workflows/build+release.yml | 2 +- .forgejo/workflows/pull-requests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index 7e2d1a2..91a0d01 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -51,7 +51,7 @@ jobs: - name: Run Unlighthouse Test run: | - bash -lic "yarn dev" + yarn dev & unlighthouse-ci --build-static --desktop --outputPath reports/desktop unlighthouse-ci --build-static --mobile --outputPath reports/mobile diff --git a/.forgejo/workflows/pull-requests.yml b/.forgejo/workflows/pull-requests.yml index e193a5c..40756ff 100644 --- a/.forgejo/workflows/pull-requests.yml +++ b/.forgejo/workflows/pull-requests.yml @@ -55,7 +55,7 @@ jobs: - name: Run Unlighthouse run: | - bash -lic "yarn dev" + yarn dev & unlighthouse-ci --build-static --desktop --outputPath reports/desktop unlighthouse-ci --build-static --mobile --outputPath reports/mobile