We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcf3e61 commit 5c1326bCopy full SHA for 5c1326b
1 file changed
.github/workflows/continuous-integration.yml
@@ -31,7 +31,7 @@ jobs:
31
- name: Wait for DB2 to be ready
32
run: |
33
echo "Waiting for DB2 to start..."
34
- for i in {1..100}; do
+ for i in {1..200}; do
35
if docker exec db2 su - db2inst1 -c 'db2 connect to sample' > /dev/null 2>&1; then
36
echo "DB2 is ready!"
37
break
@@ -44,7 +44,6 @@ jobs:
44
with:
45
node-version: ${{ matrix.node-version }}
46
- run: npm ci
47
- - run: docker logs -f db2
48
- name: Run test
49
run: npm test --ignore-scripts
50
0 commit comments