Skip to content

Commit

Permalink
fix(ci): bump max_old_space_size from 4096 to 8192 MB (#672)
Browse files Browse the repository at this point in the history
* fix(ci): bump node max memory from `4096` to `8192` megabytes

* fix: add Höllvania to `SystemName`
  • Loading branch information
SlayerOrnstein authored Dec 19, 2024
1 parent 0220108 commit 5922b5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- run: sh .github/workflows/regression.sh
- uses: stefanzweifel/git-auto-commit-action@v5
env:
NODE_OPTIONS: '--max_old_space_size=4096'
NODE_OPTIONS: '--max_old_space_size=8192'
with:
skip_dirty_check: false
commit_message: 'fix(items): new items'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regression.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

{
NODE_OPTIONS=--max_old_space_size=4096 npm test && exit 0
NODE_OPTIONS=--max_old_space_size=8192 npm test && exit 0
} || {
echo "Regression failed, rolling back..."
cd "${GITHUB_WORKSPACE}" && git checkout -- . && exit 0
Expand Down
3 changes: 2 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,8 @@ declare module 'warframe-items' {
| 'Kuva Fortress'
| 'Zariman'
| 'Void'
| 'Duviri';
| 'Duviri'
| 'Höllvania';

type Element = Capitalize<keyof DamageTypes>;
}

0 comments on commit 5922b5c

Please sign in to comment.