Merge latest API plugins base into browser integrations #26
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: LocalThought API plugins E2E | |
| on: | |
| push: | |
| branches: [feat/api-plugins, codex/localthought-api-plugins, codex/browser-integrations] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pets: | |
| name: Connect, paginate and display typed 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 imports from the mock integration proxy after account connection and review" | |
| env: | |
| NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }} |