Skip to content
Closed
Changes from 5 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d3ad818
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 14, 2025
aa286b0
Merge pull request #1 from subhashkhileri/sealight-unit-test
subhashkhileri Aug 16, 2025
35bd210
test
subhashkhileri Aug 16, 2025
e0ec077
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
1d19609
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
9d1c6e1
Merge pull request #2 from subhashkhileri/sealight-unit-test
subhashkhileri Aug 16, 2025
effdbf1
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
4b919a1
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
bd6e78c
Merge pull request #3 from subhashkhileri/sealight-unit-test
subhashkhileri Aug 16, 2025
0b069cb
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
8b2b4c9
Merge branch 'main' into sealight-unit-test
subhashkhileri Aug 16, 2025
f549f4e
Merge pull request #4 from subhashkhileri/sealight-unit-test
subhashkhileri Aug 16, 2025
a25c890
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
c4c22fc
chore: update pr workflow, dependencies for SealLight unit test integ…
subhashkhileri Aug 16, 2025
8df263f
Merge pull request #5 from subhashkhileri/sealight-unit-test-new
subhashkhileri Aug 16, 2025
e4b5fe8
sealights-jest-plugin and plugin scan update
subhashkhileri Aug 16, 2025
82949dc
sealights-jest-plugin and plugin scan update
subhashkhileri Aug 17, 2025
3703c21
sealights-jest-plugin and plugin scan update
subhashkhileri Aug 17, 2025
51f755c
Sealgiht: add dynamic plugins scan update
subhashkhileri Aug 17, 2025
d9c398b
sealights-jest-plugin and plugin scan update
subhashkhileri Aug 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ jobs:
if: ${{ steps.check-image.outputs.is_skipped != 'true' }}
run: npx slnodejs config --tokenfile ./sltoken.txt --appname "rhdh" --branch "pr-${{ github.event.pull_request.number }}-${{ github.head_ref }}" --build "pr-${{ github.event.pull_request.number }}-${{ github.sha }}"

- name: Start SealLight build session
if: ${{ steps.check-image.outputs.is_skipped != 'true' }}
run: npx slnodejs start --tokenfile ./sltoken.txt --buildsessionidFile ./buildsessionid

- name: Extract backend bundle for SealLight scan
if: ${{ steps.check-image.outputs.is_skipped != 'true' }}
run: tar -xzf packages/backend/dist/bundle.tar.gz -C packages/backend/dist
Expand Down Expand Up @@ -135,6 +139,12 @@ jobs:
exit 1
fi

# Verify build session file exists
if [[ ! -f ./buildsessionid ]]; then
echo "Error: buildsessionid file not found. SealLight session may not be properly initialized."
exit 1
fi

# Scan each target
for target in "${scan_targets[@]}"; do
workspace_path="${target%:*}"
Expand Down
Loading