Skip to content

Commit

Permalink
run tests for benchmarks during release
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Oct 25, 2024
1 parent 9cb3b93 commit 790eccb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,15 @@ jobs:
cd ${{ matrix.test.path }}
sed -E -i "s/(\"azle\": \")(.*)(\")/\1${{ needs.prepare-release.outputs.release-version }}\3/" package.json
npm install
rm -rf node_modules
- name: Start dfx with artificial delay 0
working-directory: ${{ matrix.test.path }}
run: dfx start --clean --background --host 127.0.0.1:8000 --artificial-delay 0

- name: Run npm test (continue on error)
working-directory: ${{ matrix.test.path }}
continue-on-error: true
run: npm test

# TODO we should use some Action-specific bot account
- name: Commit and push changes
Expand Down

0 comments on commit 790eccb

Please sign in to comment.