Skip to content

Commit

Permalink
fix: new
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Jan 23, 2024
1 parent 0db89f8 commit 2fdc3e9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/integration-tests-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@ name: Integration test - API
on: pull_request

jobs:
startDocker:
dockerSetup:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
checks: write
steps:
- name: Checkout with Submodule
uses: actions/checkout@v3
Expand All @@ -26,7 +22,7 @@ jobs:
docker-compose -f "docker-compose.yaml" up -d
runTests:
needs: startDocker
needs: dockerSetup
timeout-minutes: 30
runs-on: ubuntu-latest
permissions:
Expand All @@ -48,6 +44,11 @@ jobs:
- transactions.test.ts
name: 'API test set: ${{ matrix.test-pattern}} / Node: ${{ matrix.node-version}}'
steps:
- name: Checkout with Submodule
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 2fdc3e9

Please sign in to comment.