-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SPSH 509 Testfall Ergebnisliste Benutzer auf Vollstaendigkeit prüfen …
…fertig (#28) * Testfall Ergebnisliste Benutzer auf Vollstaendigkeit prüfen fertig * Findings aus review behoben * Update pages/admin/PersonManagementView.page.ts Co-authored-by: Julian Aggarwal <[email protected]> --------- Co-authored-by: Julian Aggarwal <[email protected]>
- Loading branch information
1 parent
a33ed9a
commit b846123
Showing
3 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Scheduled Playwright Alle Tests(main) | ||
on: | ||
schedule: | ||
- cron: '10 5 * * *' | ||
jobs: | ||
test: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- name: Remove Microsoft APT and Update Packages | ||
run: | | ||
sudo rm /etc/apt/sources.list.d/microsoft-prod.list | ||
sudo apt-get update || true | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps | ||
- name: Run Playwright tests | ||
run: FRONTEND_URL='https://main.dev.spsh.dbildungsplattform.de/' npx playwright test | ||
env: | ||
USER: '${{ secrets.USER }}' | ||
PW: '${{ secrets.PW }}' | ||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: playwright-report | ||
path: playwright-report/ | ||
retention-days: 30npm login |
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
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