-
Notifications
You must be signed in to change notification settings - Fork 20
44 lines (40 loc) · 1.35 KB
/
playwright.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: End-to-end tests
on: pull_request
jobs:
e2e:
runs-on: ubuntu-latest
name: End-to-end tests (chunk ${{ matrix.shard }}/${{ strategy.job-total }})
strategy:
fail-fast: false
matrix:
shard: [1]
defaults:
run:
working-directory: back/integration-tests
steps:
- uses: actions/checkout@v3
- name: Start containers
env:
TD_COMPANY_ELASTICSEARCH_URL: ${{ secrets.TD_COMPANY_ELASTICSEARCH_URL }}
TD_COMPANY_ELASTICSEARCH_CACERT: ${{ secrets.TD_COMPANY_ELASTICSEARCH_CACERT }}
run: |
chmod +x ./run.sh
./run.sh -u -c ${{ matrix.shard }}/${{ strategy.job-total }}
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
working-directory: front
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Stop containers
env:
TD_COMPANY_ELASTICSEARCH_URL: ${{ secrets.TD_COMPANY_ELASTICSEARCH_URL }}
TD_COMPANY_ELASTICSEARCH_CACERT: ${{ secrets.TD_COMPANY_ELASTICSEARCH_CACERT }}
run: |
chmod +x ./run.sh
./run.sh -d -c ${{ matrix.shard }}/${{ strategy.job-total }}