Skip to content

fix: migrate button should respect namespace #1567

fix: migrate button should respect namespace

fix: migrate button should respect namespace #1567

Workflow file for this run

name: Cli CI
on:
pull_request:
paths:
- "cli/**/*"
- "connect/**/*"
- ".github/workflows/cli-ci.yaml"
concurrency:
group: ${{github.workflow}}-${{github.head_ref}}
cancel-in-progress: true
env:
CI: true
jobs:
build_test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/node
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Generate code
run: pnpm buf generate --template buf.ts.gen.yaml
- name: Check if git is not dirty after generating files
run: git diff --no-ext-diff --exit-code
- name: Build
run: pnpm run --filter ./cli --filter ./connect --filter ./shared --filter ./composition build
- name: Test
run: pnpm run --filter wgc test