aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-07-30 16:25:00 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-07-31 11:32:04 +0200
commit12e8547f07d9ef28ede3141da11c8c3de8549f7e (patch)
treed6a84ae992b884e4fdffaf390830bb28e6bd9395 /.github
parentf4659d73fb2d81c9a8f8d1f592ca873b622a194b (diff)
downloadPeerTube-12e8547f07d9ef28ede3141da11c8c3de8549f7e.tar.gz
PeerTube-12e8547f07d9ef28ede3141da11c8c3de8549f7e.tar.zst
PeerTube-12e8547f07d9ef28ede3141da11c8c3de8549f7e.zip
Test ldap
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6b9119e2a..9c90e6437 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -21,10 +21,15 @@ jobs:
21 POSTGRES_USER: peertube 21 POSTGRES_USER: peertube
22 POSTGRES_HOST_AUTH_METHOD: trust 22 POSTGRES_HOST_AUTH_METHOD: trust
23 23
24 ldap:
25 image: rroemhild/test-openldap
26 ports:
27 - 389:389
28
24 strategy: 29 strategy:
25 fail-fast: false 30 fail-fast: false
26 matrix: 31 matrix:
27 test_suite: [ misc, api-1, api-2, api-3, api-4, cli, lint ] 32 test_suite: [ misc, api-1, api-2, api-3, api-4, cli, lint, external-plugins ]
28 33
29 env: 34 env:
30 PGUSER: peertube 35 PGUSER: peertube
@@ -63,9 +68,6 @@ jobs:
63 - name: Install dependencies 68 - name: Install dependencies
64 run: yarn install --frozen-lockfile 69 run: yarn install --frozen-lockfile
65 70
66 - name: Test
67 run: echo $PATH
68
69 - name: Run Test 71 - name: Run Test
70 run: NODE_PENDING_JOB_WAIT=2000 npm run ci -- ${{ matrix.test_suite }} 72 run: NODE_PENDING_JOB_WAIT=2000 npm run ci -- ${{ matrix.test_suite }}
71 73