Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

feat: add NFT bundler #713

Merged
merged 11 commits into from
Oct 13, 2021
4 changes: 4 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
node-version: 10.18.0
fail-fast: false
steps:
# Increasing the maximum number of open files. See:
# https://github.com/actions/virtual-environments/issues/268
- name: Increase open file limit
run: sudo ulimit -Sn 65536
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think this might need to have the shell specified sudo /bin/bash -c "ulimit -l 65536". it will only work if processes are started from same shell, which i think they will be cos it's inside the same job

- name: Git checkout
uses: actions/checkout@v2
- name: Node.js ${{ matrix.node }}
Expand Down