Fixed setheapsize to not run on windows

This commit is contained in:
Z4NR34L 2023-01-09 10:20:38 +01:00
parent bc3640ac86
commit c6a362fc5f
No known key found for this signature in database
GPG key ID: 77F5F2B35C2F56C3

View file

@ -91,6 +91,11 @@ jobs:
# Remove `&& yarn build` if you build your frontend in `beforeBuildCommand`
run: |
npm install
- name: Set heap size on macos and ubuntu
if: matrix.platform != 'windows-latest'
# Remove `&& yarn build` if you build your frontend in `beforeBuildCommand`
run: |
npm run setheapsize
- name: Build the app