File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -135,8 +135,19 @@ jobs:
135135 branch : ${{ github.head_ref || github.ref_name }}
136136 project : BitGo/advanced-wallets
137137
138+ integration-test :
139+ name : Integration Test
140+ runs-on : ubuntu-latest
141+ needs : [build]
142+ steps :
143+ - name : Checkout
144+ uses : actions/checkout@v4
145+
146+ - name : Integration Test (Docker)
147+ run : npm run docker:test:integration
148+
138149 test :
139- name : Test
150+ name : Unit Test
140151 runs-on : ubuntu-latest
141152 steps :
142153 - name : Checkout
Original file line number Diff line number Diff line change 44
55echo " Running integration tests..."
66
7- trap ' docker- compose -f docker-compose.integ.yml down' EXIT
7+ trap ' docker compose -f docker-compose.integ.yml down' EXIT
88
9- docker- compose -f docker-compose.integ.yml up --build --abort-on-container-exit
9+ docker compose -f docker-compose.integ.yml up --build --abort-on-container-exit
You can’t perform that action at this time.
0 commit comments