[TRA-13028] Tests end-to-end avec Playwright #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |