[TRA-13028] Tests end-to-end avec Playwright #10
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 (chunk ${{ matrix.shard }}/${{ strategy.job-total }}) | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
shard: [1] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Node.js | ||
working-directory: front | ||
uses: actions/setup-node@v3 | ||
Check failure on line 17 in .github/workflows/playwright.yml GitHub Actions / End-to-end testsInvalid workflow file
|
||
with: | ||
node-version: '18' | ||
cache: 'npm' | ||
cache-dependency-path: front/package-lock.json | ||
- name: Install dependencies | ||
working-directory: front | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
working-directory: front | ||
run: npx playwright install --with-deps | ||
- 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 -c ${{ matrix.shard }}/${{ strategy.job-total }} | ||
- name: Run Playwright tests | ||
working-directory: front | ||
run: npx playwright test | ||
- uses: actions/upload-artifact@v3 | ||
working-directory: front | ||
if: always() | ||
with: | ||
name: playwright-report | ||
path: playwright-report/ | ||
retention-days: 30 | ||
- 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 -c ${{ matrix.shard }}/${{ strategy.job-total }} |