-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01e2f0e
commit f23a332
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -63,24 +63,24 @@ jobs: | |
|
||
- name: Test Setup | ||
uses: ./.github/actions/test-setup | ||
with: | ||
should-install-bun: true | ||
|
||
- name: Run UI tests (on template) | ||
run: sh ./scripts/tests-ui.sh | ||
|
||
- name: Wait for release to succeed | ||
uses: lewagon/[email protected] | ||
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 | ||
# with: | ||
# should-install-bun: true | ||
|
||
# - name: Run UI tests (on template) | ||
# run: sh ./scripts/tests-ui.sh | ||
|
||
# - name: Wait for release to succeed | ||
# uses: lewagon/[email protected] | ||
# 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 | ||
|
||
- name: Run UI tests (with published version) | ||
run: sh ./scripts/tests-ui-integration.sh | ||
|