From 7dd76b16adf0469f28bb097639f60a583af57c06 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Fri, 3 Jan 2025 10:15:21 +0000 Subject: [PATCH 1/4] chore: fix integration test --- scripts/tests-ui-integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests-ui-integration.sh b/scripts/tests-ui-integration.sh index da429dcf40e..3b9504c00eb 100755 --- a/scripts/tests-ui-integration.sh +++ b/scripts/tests-ui-integration.sh @@ -32,7 +32,7 @@ if [ -d "$PROJECT_DIR" ]; then echo "Removing existing project directory '$PROJECT_DIR'" rm -rf $PROJECT_DIR fi -pnpm create fuels@$PUBLISHED_NPM_TAG $PROJECT_DIR --pnpm --no-install +pnpm create fuels@$PUBLISHED_NPM_TAG $PROJECT_DIR --no-install echo "3. Intialise the project" cd $PROJECT_DIR From a729b9336f6b39a1134b7d908662f6d3d92f3bca Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Fri, 3 Jan 2025 10:15:41 +0000 Subject: [PATCH 2/4] chore: enable run for integration test --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b4eebdd9f42..cde77f9e943 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -58,7 +58,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 From de103a60f608987881ab43241a63cff973ea8b2f Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Fri, 3 Jan 2025 10:32:29 +0000 Subject: [PATCH 3/4] changeset update --- .changeset/dry-hornets-wave.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .changeset/dry-hornets-wave.md diff --git a/.changeset/dry-hornets-wave.md b/.changeset/dry-hornets-wave.md new file mode 100644 index 00000000000..5ca89aba929 --- /dev/null +++ b/.changeset/dry-hornets-wave.md @@ -0,0 +1,4 @@ +--- +--- + +fix: integration test using removed flag From 3888c0db8d27528d97ade921d2358e6896e28831 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Fri, 3 Jan 2025 10:33:08 +0000 Subject: [PATCH 4/4] chore: integration test should only run on master --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cde77f9e943..b4eebdd9f42 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -58,7 +58,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