Skip to content

Commit 82c88ed

Browse files
committed
Enhance browser-sdk workflow to include type checking in test matrix
1 parent fe242fe commit 82c88ed

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/browser-sdk.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
browser-sdk-test:
88
strategy:
99
matrix:
10-
test_type: [unit, e2e]
10+
test_type: [unit, e2e, typecheck]
1111

1212
runs-on: ubuntu-latest
1313
steps:
@@ -26,9 +26,12 @@ jobs:
2626
run: |
2727
cd rum-events-format
2828
git checkout ${{ github.sha }}
29+
cd ..
30+
yarn json-schemas:generate
2931
3032
- name: Run ${{matrix.test_type}} tests
3133
run: eval $command_${{matrix.test_type}}
3234
env:
3335
command_unit: 'yarn test:unit'
3436
command_e2e: 'yarn test:e2e:ci --workers 10'
37+
command_build: 'yarn typecheck'

0 commit comments

Comments
 (0)