Merge pull request #836 from hyperweb-io/devin/1772245856-update-read… #1041
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: Run E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: pnpm | |
| - name: deps | |
| run: pnpm install | |
| - name: build | |
| run: pnpm run build | |
| - name: codegen | |
| run: pnpm --filter @cosmology/starship-test run codegen | |
| # Starship Infra setup | |
| # - Create a local kind cluster | |
| # - Creates a new namespace based on the name | |
| # - Spins up the infra with the given config file | |
| # - Waits till all nodes are running (timeout 30m) | |
| # - Port forward all ports to localhost for next steps to connect | |
| - name: infra | |
| id: starship-action | |
| uses: cosmology-tech/starship-action@0.5.8 | |
| with: | |
| config: packages/starship/configs/local-config.yaml | |
| cli-version: 3.0.0 | |
| - name: e2e | |
| run: pnpm --filter @cosmology/starship-test run starship:test |