Skip to content

test: testing CI

test: testing CI #1

Workflow file for this run

name: End-to-end tests (Playwright)
on: pull_request
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
working-directory: front
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Start the application (back + front)
working-directory: back/integration-tests

Check failure on line 18 in .github/workflows/playwright.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/playwright.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
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
- 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 the application (back + front)
working-directory: back/integration-tests
run: |
chmod +x ./run.sh
./run.sh -d