File tree Expand file tree Collapse file tree 2 files changed +9
-39
lines changed
Expand file tree Collapse file tree 2 files changed +9
-39
lines changed Original file line number Diff line number Diff line change 2222 run : yarn lint
2323
2424 tests :
25- runs-on : ubuntu-latest
25+ runs-on : ${{ matrix.os }}
26+ strategy :
27+ matrix :
28+ os : [ubuntu-latest, windows-latest]
2629 steps :
2730 - name : Checkout code
2831 uses : actions/checkout@v5
@@ -36,12 +39,16 @@ jobs:
3639 run : yarn test --coverage --logHeapUsage -w=4 --workerIdleMemoryLimit=1.5G
3740
3841 - name : Upload coverage to Codecov
42+ if : matrix.os == 'ubuntu-latest'
3943 uses : codecov/codecov-action@v5
4044 with :
4145 fail_ci_if_error : false
4246
4347 build-prod :
44- runs-on : ubuntu-latest
48+ runs-on : ${{ matrix.os }}
49+ strategy :
50+ matrix :
51+ os : [ubuntu-latest, windows-latest]
4552 steps :
4653 - name : Checkout code
4754 uses : actions/checkout@v5
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments