Skip to content

untuva-testing

untuva-testing #356

Workflow file for this run

name: Playwright Tests
on:
workflow_dispatch:
push:
schedule:
- cron: '0 3 * * *'
env:
TEST_AUTOMATION_USERNAME: ${{ secrets.TEST_AUTOMATION_USERNAME }}
TEST_AUTOMATION_PASSWORD: ${{ secrets.TEST_AUTOMATION_PASSWORD }}
CI: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '21'
- name: install playwright and run tests
run: |
npm install -g yarn && yarn
yarn playwright install --with-deps
yarn playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 7