fix(e2e): type plugin test fixtures to unblock CI #11
Workflow file for this run
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: Pets E2E | |
| on: | |
| push: | |
| branches: [feat/api-plugins] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pets: | |
| name: Install and display demo pets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run the focused Pets browser journey | |
| uses: dagger/dagger-for-github@8.0.0 | |
| with: | |
| version: latest | |
| cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
| verb: call | |
| args: >- | |
| end-to-end --netlify-auth-token env://NETLIFY_TOKEN | |
| --playwright-mode full | |
| --playwright-grep "Pets installs its demo table after the reviewed import is applied" | |
| env: | |
| NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }} |