Skip to content

Commit

Permalink
Update the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Jan 7, 2025
1 parent 21d022a commit 6922ed5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/compare-js-runtimes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
run: ${{ inputs.setup }}

- name: Run performance tests on node
run: node ${{ inputs.node-options }} ${{ inputs.command }} ${{ inputs.files }} --local ./nodejs-benchmark --persist --noThrow ${{ github.event_name == 'push' }}
run: node ${{ inputs.node-options }} ${{ inputs.command }} ${{ inputs.files }} --local ./nodejs-benchmark --persist --noThrow ${{ github.event_name == 'push' }} --skipPostComment
env:
GITHUB_TOKEN: ${{ secrets.github_token }}

- name: Archive nodejs benchmark artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -79,7 +81,9 @@ jobs:
run: bun run --bun ${{ inputs.setup }}

- name: Run performance tests on bun
run: bun run --bun ${{ inputs.command }} ${{ inputs.files }} --local ./bun-benchmark --persist --noThrow ${{ github.event_name == 'push' }}
run: bun run --bun ${{ inputs.command }} ${{ inputs.files }} --local ./bun-benchmark --persist --noThrow ${{ github.event_name == 'push' }} --skipPostComment
env:
GITHUB_TOKEN: ${{ secrets.github_token }}

- name: Archive bun benchmark artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -107,7 +111,9 @@ jobs:
run: deno run --unstable-sloppy-imports -A ${{ inputs.setup }}

- name: Run performance tests on bun
run: deno run --unstable-sloppy-imports -A ${{ inputs.command }} ${{ inputs.files }} --local ./deno-benchmark --persist --noThrow ${{ github.event_name == 'push' }}
run: deno run --unstable-sloppy-imports -A ${{ inputs.command }} ${{ inputs.files }} --local ./deno-benchmark --persist --noThrow ${{ github.event_name == 'push' }} --skipPostComment
env:
GITHUB_TOKEN: ${{ secrets.github_token }}

- name: Archive deno benchmark artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 6922ed5

Please sign in to comment.