Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallel tests ptII #235

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,25 @@ on:
- main

jobs:
test-net:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v4"

- name: "Setup node"
uses: actions/setup-node@v2
with:
node-version: 20

- name: "Run network tests"
run: "yarn test:integration net --no-prebuild"

- name: "Add test summary"
run: |
echo "## Network test results" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY

prebuild:
runs-on: "ubuntu-latest"
steps:
Expand Down Expand Up @@ -66,7 +85,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
test-suite: [base, persist, net]
test-suite: [base, persist]
fail-fast: false

steps:
Expand Down
Loading