Fetch a member's organizations in one call #130
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: E2E | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: e2e-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Provision cluster | |
| uses: agynio/e2e/.github/actions/provision-vm@main | |
| - name: Setup DevSpace | |
| uses: agynio/e2e/.github/actions/setup-devspace@main | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Generate API types | |
| run: npm run generate | |
| - name: Build assets | |
| run: npm run build | |
| - name: Deploy from source | |
| run: devspace dev --pipeline dev | |
| - name: Run E2E tests | |
| uses: agynio/e2e/.github/actions/run-tests@main | |
| with: | |
| service: console | |
| include_smoke: false |