Skip to content

Commit

Permalink
Try and run the net test in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Dec 31, 2024
1 parent 55c4f66 commit bf9381e
Showing 1 changed file with 20 additions and 1 deletion.
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

0 comments on commit bf9381e

Please sign in to comment.