Skip to content

Commit 4aea3a9

Browse files
author
mike dupont
committed
run only chunk 13 with more detail
1 parent 63a2e70 commit 4aea3a9

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/build-action.yml

+15-4
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,17 @@ jobs:
117117
strategy:
118118
fail-fast: false
119119
matrix:
120-
chunk: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32]
120+
chunk: [
121+
#1,2,3,4,5,6,7,8,9,10,11,12,
122+
13
123+
#,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32
124+
]
121125
perf: [
122-
#prof, heap, cpu,
126+
no,
127+
prof, heap, cpu,
123128
all]
124-
node_version: [18
125-
#,20,22
129+
node_version: [
130+
18,20,22
126131
]
127132
steps:
128133
- name: Restore repository
@@ -193,6 +198,12 @@ jobs:
193198
for ((i=start_index; i<end_index && i<${#test_files[@]}; i++)); do
194199
echo "Running test: ${test_files[$i]}"
195200
201+
# NO prof
202+
if [ "${{ matrix.perf }}" == "no" ]; then
203+
echo no prof
204+
(node --enable-source-maps "${test_files[$i]}" | tee -a profiling.md) || echo skip errors
205+
fi
206+
196207
# cpu prof
197208
if [ "${{ matrix.perf }}" == "cpu" ]; then
198209
echo cpu

0 commit comments

Comments
 (0)