We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958041d commit 5b97541Copy full SHA for 5b97541
1 file changed
.github/workflows/test.yml
@@ -12,13 +12,20 @@ permissions:
12
contents: read
13
14
jobs:
15
- test:
16
- name: Unit and Integration
+ unit:
+ name: "${{ matrix.workspace }} (Node ${{ matrix.version }}, ${{ matrix.os }})"
17
strategy:
18
- fail-fast: false # Do not stop other jobs if one fails
+ fail-fast: false
19
matrix:
20
version: [22, 24]
21
os: [ubuntu-24.04, windows-2025, macos-15]
22
+ workspace:
23
+ - "@ui5/builder"
24
+ - "@ui5/cli"
25
+ - "@ui5/fs"
26
+ - "@ui5/logger"
27
+ - "@ui5/project"
28
+ - "@ui5/server"
29
runs-on: ${{ matrix.os }}
30
steps:
31
@@ -38,4 +45,4 @@ jobs:
38
45
run: npm ci
39
46
40
47
- name: Run unit tests
41
- run: npm run unit
48
+ run: npm run unit --workspace=${{ matrix.workspace }}
0 commit comments