-
Notifications
You must be signed in to change notification settings - Fork 20
56 lines (52 loc) · 1.62 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
45
46
47
48
49
50
51
52
53
54
55
56
name: End-to-end tests
on: pull_request
jobs:
e2e:
runs-on: ubuntu-latest
name: End-to-end tests
strategy:
fail-fast: false
defaults:
run:
working-directory: front
steps:
- uses: actions/checkout@v3
# Install front dependencies
- name: Set up Node.js (front)
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: front/package-lock.json
- name: Install dependencies (front)
run: npm ci
# Install Playwright
- name: Install Playwright Browsers
run: npx playwright install --with-deps
# Start containers (back + front)
- name: Start containers
working-directory: back/integration-tests
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
# Run e2e tests
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
# Stop the containers
- name: Stop containers
working-directory: back/integration-tests
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