Skip to content

Commit

Permalink
fixing syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mike dupont committed Oct 22, 2024
1 parent 4f16e4f commit a36afc9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
fail-fast: false
matrix:
# prof, heap, cpu,
perf: [ no, , heap, cpu, prof, all]
perf: [ no, heap, cpu, prof, all ]
node_version: [ 18,20,22 ]

test_type: [ 'Voting integration tests' ]
Expand Down Expand Up @@ -136,9 +136,9 @@ jobs:
mv isolate-*-v8.log "${OUTPUT_TEST_DIR}" || echo ok
mv Heap.*.heapprofile "${OUTPUT_TEST_DIR}" || echo ok
mv CPU.*.cpuprofile "${OUTPUT_TEST_DIR}" || echo ok
find -name \*log
find -name \*.cpuprofile
find -name \*.heapprofile
find . -name \*log
find . -name \*.cpuprofile
find . -name \*.heapprofile
continue-on-error: true

- name: Upload test results
Expand Down

0 comments on commit a36afc9

Please sign in to comment.