8000 fix: FSC build CLIENT fix. (#757) · optimizely/javascript-sdk@aa11535 · GitHub
[go: up one dir, main page]

Skip to content

Commit aa11535

Browse files
fix: FSC build CLIENT fix. (#757)
Note: Bypassing checks because this PR is fixing integration tests which work with a given branch. We tested it with this branch and then changed the actual code to use master which is why its failing here but it will work for master when merged ## Summary - FSC needs CLIENT to run js sdk, which was missing in our integration-test yaml. I have made it fixed, once this PR Is merged, we should have proper status of FSC in our checks. ## Test plan - I have tested in our last checks and works fine. for now i have pointed to master branch which will be used to take configuration for running CI.
1 parent fc625f0 commit aa11535

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/integration_test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,6 @@ jobs:
5252
EVENT_MESSAGE: ${{ github.event.message }}
5353
HOME: 'home/runner'
5454
run: |
55-
echo "$GITHUB_CONTEXT"
56-
home/runner/travisci-tools/trigger-script-with-status-update.sh
55+
CLIENT=node home/runner/travisci-tools/trigger-script-with-status-update.sh
56+
# Run only browser builds when it's FSC not for FPS.
57+
[ "$FULLSTACK_TEST_REPO" == "ProdTesting" ] || CLIENT=browser home/runner/travisci-tools/trigger-script-with-status-update.sh

0 commit comments

Comments
 (0)
0