abap2UI5/.github/workflows/playwright.yml
oblomov-dev d04de18cbd
update_ci_configs (#1422)
* update

* Delete .gitignore

* Create unit_test.yml

* Update unit_test.yml

* Create rename_test.yml

* Delete .github/workflows/test_rename.yml

* Delete .github/workflows/test.yml

* Update rename_test.yml

* Update unit_test.yml

* Delete ci/abaplint_rename.jsonc

* Update unit_test.yml

* Delete ci/abaplint-downport.jsonc

* Update build_downport.yaml

* Rename abaplint-abap_cloud_readiness.jsonc to abap_cloud_check.jsonc

* Rename abaplint-standard_abap_readiness.jsonc to standard_abap_check.jsonc

* Update abaplint-app.json

* Rename standard_abap_check.jsonc to abap_standard_check.jsonc

* Update abaplint-app.json

* Update unit_test.yml

* Update rename_test.yml

* update

* Update rename_test.yml

* update

* Update rename_test.yml

* Update rename_test.yml

* Update rename_test.yml

* Update unit_test.yml

* Update playwright.yml

* Update unit_test.yml

* Update build_downport.yaml
2024-09-12 23:52:38 +02:00

29 lines
754 B
YAML

name: playwright-browser-test
on:
pull_request:
permissions:
contents: read
jobs:
run:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Setup
run: git clone https://github.com/abap2UI5/abap2UI5-setup.git && cp -r abap2UI5-setup/* . && npm i
- name: Install dependencies
run: npm run build
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30