]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - .github/workflows/test.yml
Move types package in packages/
[github/Chocobozzz/PeerTube.git] / .github / workflows / test.yml
1 name: Test
2
3 on:
4 push:
5 pull_request:
6 types: [synchronize, opened]
7 schedule:
8 - cron: '0 3 * * 1-5'
9
10 jobs:
11
12 test:
13 runs-on: ubuntu-latest
14
15 services:
16 redis:
17 image: redis
18 ports:
19 - 6379:6379
20
21 postgres:
22 image: postgres:10
23 ports:
24 - 5432:5432
25 env:
26 POSTGRES_USER: peertube
27 POSTGRES_HOST_AUTH_METHOD: trust
28
29 ldap:
30 image: chocobozzz/docker-test-openldap
31 ports:
32 - 10389:10389
33
34 s3ninja:
35 image: chocobozzz/s3-ninja
36 ports:
37 - 9444:9000
38
39 strategy:
40 fail-fast: false
41 matrix:
42 test_suite: [ types-package, client, api-1, api-2, api-3, api-4, cli-plugin, lint, external-plugins ]
43
44 env:
45 PGUSER: peertube
46 PGHOST: localhost
47 NODE_PENDING_JOB_WAIT: 250
48 ENABLE_OBJECT_STORAGE_TESTS: true
49
50 steps:
51 - uses: actions/checkout@v2
52
53 - uses: './.github/actions/reusable-prepare-peertube-build'
54 with:
55 node-version: '14.x'
56
57 - uses: './.github/actions/reusable-prepare-peertube-run'
58
59 - name: Cache fixtures
60 uses: actions/cache@v2
61 with:
62 path: |
63 fixtures
64 key: ${{ runner.OS }}-fixtures-${{ matrix.test_suite }}-${{ hashFiles('fixtures/*') }}
65 restore-keys: |
66 ${{ runner.OS }}-fixtures-${{ matrix.test_suite }}-
67 ${{ runner.OS }}-fixtures-
68 ${{ runner.OS }}-
69
70 - name: Set env test variable (schedule)
71 if: github.event_name != 'schedule'
72 run: |
73 echo "DISABLE_HTTP_IMPORT_TESTS=true" >> $GITHUB_ENV
74
75 - name: Run Test
76 # external-plugins tests only run on schedule
77 if: github.event_name == 'schedule' || matrix.test_suite != 'external-plugins'
78 run: npm run ci -- ${{ matrix.test_suite }}
79
80 - name: Display errors
81 if: ${{ always() }}
82 run: |
83 ( \
84 test -f dist/scripts/parse-log.js && \
85 cat *-ci.log | uniq -c && \
86 NODE_ENV=test node dist/scripts/parse-log.js -l error -f artifacts/*.log \
87 ) || \
88 echo "parse-log.js script does not exist, skipping."
89
90 - name: Upload logs
91 uses: actions/upload-artifact@v2
92 if: failure()
93 with:
94 name: test-storages-${{ matrix.test_suite }}
95 path: artifacts
96 retention-days: 7