Skip to content

Commit 3fa1c40

Browse files
committed
Remove stale test-dashboard CI job
The dashboard/ package was extracted in bd688a5 but its CI job remained, causing every CI run to fail with "No such file or directory" when the job tried to cd into the nonexistent dashboard/. Drop the job and its path filter.
1 parent 7001393 commit 3fa1c40

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CI
33
on:
44
push:
55
branches: [main, staging]
6-
paths: ['container/**', 'cli/**', 'dashboard/**']
6+
paths: ['container/**', 'cli/**']
77
pull_request:
88
branches: [main, staging]
9-
paths: ['container/**', 'cli/**', 'dashboard/**']
9+
paths: ['container/**', 'cli/**']
1010

1111
jobs:
1212
test:
@@ -52,13 +52,3 @@ jobs:
5252
working-directory: cli
5353
- run: bun test
5454
working-directory: cli
55-
56-
test-dashboard:
57-
runs-on: ubuntu-latest
58-
steps:
59-
- uses: actions/checkout@v6
60-
- uses: oven-sh/setup-bun@v2
61-
- run: bun install
62-
working-directory: dashboard
63-
- run: bun test
64-
working-directory: dashboard

0 commit comments

Comments
 (0)