Skip to content

Commit 630840d

Browse files
committed
Fix missing newline in unlighthouse CI workflow commands
Added missing newline in commands for mobile and desktop configurations in the unlighthouse CI workflow file. Ensures proper syntax and avoids potential issues during execution.
1 parent 5f305be commit 630840d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/unlighouse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
unlighthouse-ci \
3737
--site http://localhost:4173 \
38-
--config-file mobile-v1.config.ts
38+
--config-file mobile-v1.config.ts \
3939
--reporter lighthouseServer \
4040
--lhci-host https://lhci-server-crimson-bush-1151.fly.dev \
4141
--lhci-build-token ${{ secrets.LHCI_BUILD_TOKEN }}
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
unlighthouse-ci \
4646
--site http://localhost:4173 \
47-
--config-file desktop-v1.config.ts
47+
--config-file desktop-v1.config.ts \
4848
--reporter lighthouseServer \
4949
--lhci-host https://lhci-server-crimson-bush-1151.fly.dev \
5050
--lhci-build-token ${{ secrets.LHCI_BUILD_TOKEN }}

0 commit comments

Comments
 (0)