fix(zones): Show error messages for zone mutations MAASENG-4541 (#5641) #1373
This file contains hidden or 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
| name: Playwright Tests | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| env: | |
| MAAS_URL: localhost:5240 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Install Playwright Browsers | |
| run: npx playwright install --with-deps | |
| - name: Setup MAAS | |
| uses: canonical/setup-maas@main | |
| with: | |
| maas-url: ${{env.MAAS_URL}}/MAAS | |
| - name: Create MAAS admin | |
| run: sudo maas createadmin --username=admin --password=test --email=fake@example.org | |
| - name: Wait for MAAS UI to be ready | |
| run: yarn run wait-on http-get://${{env.MAAS_URL}}/MAAS/r | |
| - name: Run Playwright tests | |
| run: yarn playwright test tests/ui | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |