mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 21:24:54 +08:00

* 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
29 lines
754 B
YAML
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
|