Skip to content

Commit e680c3e

Browse files
committed
Fix the test command
1 parent f2374e4 commit e680c3e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
- name: Run test for libraries
3636
run: yarn test:libs
3737

38-
- name: Build and run tsc for bundles and tabs
39-
run: yarn build:modules --tsc
38+
- name: Build, lint and run tsc for bundles and tabs
39+
run: yarn workspaces foreach -ptW --from "./src/{bundles,tsc}/*" run build --tsc --lint
4040

4141
- name: Lint bundles and tabs
4242
run: yarn lint:modules

src/bundles/plotly/src/functions.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,9 @@ export function draw_sound_2d(sound: Sound) {
449449
{
450450
xaxis: {
451451
type: 'linear',
452-
title: 'Time',
452+
title: {
453+
text: 'Time'
454+
},
453455
anchor: 'y',
454456
position: 0,
455457
rangeslider: { visible: true }

0 commit comments

Comments
 (0)