diff --git a/.github/workflows/pr-release.yaml b/.github/workflows/pr-release.yaml index 593d7fce145..6eeca1f3f04 100644 --- a/.github/workflows/pr-release.yaml +++ b/.github/workflows/pr-release.yaml @@ -8,7 +8,7 @@ jobs: name: "Release PR to npm" runs-on: ubuntu-latest # comment out if:false to enable release PR to npm - # if: false + if: false permissions: write-all steps: - name: Checkout diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 33eb5238653..2735ade15f6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -54,7 +54,7 @@ jobs: integration: runs-on: ubuntu-latest timeout-minutes: 25 - if: github.ref_name == 'master' || github.head_ref == 'changeset-release/master' + # if: github.ref_name == 'master' || github.head_ref == 'changeset-release/master' steps: - name: Checkout uses: actions/checkout@v4 @@ -69,23 +69,23 @@ jobs: - name: Run UI tests (on template) run: sh ./scripts/tests-ui.sh - - name: Wait for release to succeed - uses: lewagon/wait-on-check-action@v1.3.4 - with: - ref: "refs/heads/master" - check-name: "Release" - repo-token: ${{ secrets.GITHUB_TOKEN }} - wait-interval: 30 + # - name: Wait for release to succeed + # uses: lewagon/wait-on-check-action@v1.3.4 + # with: + # ref: "refs/heads/master" + # check-name: "Release" + # repo-token: ${{ secrets.GITHUB_TOKEN }} + # wait-interval: 30 - name: Run tests (with published version) run: pnpm test:integration env: - PUBLISHED_NPM_TAG: next + PUBLISHED_NPM_TAG: pr-3048 - name: Run UI tests (with published version) run: sh ./scripts/tests-ui-integration.sh env: - PUBLISHED_NPM_TAG: next + PUBLISHED_NPM_TAG: pr-3048 e2e: runs-on: ubuntu-latest