From a36afc95420ff851794494a94f5d595f5e52b41f Mon Sep 17 00:00:00 2001 From: mike dupont Date: Tue, 22 Oct 2024 18:47:06 -0400 Subject: [PATCH] fixing syntax --- .github/workflows/build-action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-action.yml b/.github/workflows/build-action.yml index 1422d29fa..607e031d9 100644 --- a/.github/workflows/build-action.yml +++ b/.github/workflows/build-action.yml @@ -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' ] @@ -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