Skip to content

Commit d1ca4e4

Browse files
authored
Merge pull request #405 from Permify/fix/jasmine-require-loader-node24
fix: set jsLoader to require for Node.js v24
2 parents 64db840 + 696a618 commit d1ca4e4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/protos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
PR_BODY="Automatically created PR with the latest generated SDK from Permify proto definitions."
8585
8686
echo "${BRANCH_NAME}"
87-
git push "https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }}" "${BRANCH_NAME}"
87+
git push --force "https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/${{ github.repository }}" "${BRANCH_NAME}"
8888
8989
PR_NUMBER="$(gh pr list --head "${BRANCH_NAME}" --base main --state open --json number --jq '.[0].number')"
9090

jasmine.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"spec_dir": "src",
33
"spec_files": ["*.test.ts"],
4-
"helpers": []
4+
"helpers": [],
5+
"jsLoader": "require"
56
}

0 commit comments

Comments
 (0)