Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: make coverage

- name: Build
run: npm run build
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build

coverage:
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
npm install

- name: Build
run: npm run build
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build

- name: Publish test package (Trusted Publishers - no token needed)
run: |
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
npm install

- name: Build
run: npm run build
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build

- name: Publish to npm (Trusted Publishers - no token needed)
run: |
Expand Down Expand Up @@ -394,7 +394,7 @@ jobs:
npm install

- name: Build
run: npm run build
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build

- name: Publish test package (Trusted Publishers - no token needed)
run: |
Expand All @@ -408,7 +408,7 @@ jobs:
rm -f /home/runner/work/_temp/.npmrc

# Publish using Trusted Publishers (OIDC)
npm publish --tag test --access public --provenance
NODE_OPTIONS=--max-old-space-size=4096 npm publish --tag test --access public --provenance
env:
# Clear the environment variables that might interfere with OIDC
NPM_CONFIG_USERCONFIG: ''
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"playwright": "^1.57.0",
"prettier": "^3.8.1",
"ts-jest": "^29.2.0",
"tsup": "^8.3.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.4.0",
"yaml": "^2.7.0"
Expand Down
Loading