updated firebase build to increase memory

This commit is contained in:
philip-ellis-sp
2023-01-12 11:14:47 -05:00
parent 6e9781979a
commit d744aefe1d

View File

@@ -11,7 +11,11 @@ jobs:
NODE_ENV: 'development' NODE_ENV: 'development'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: npm ci && npm run gen-api-docs-all && npm run build - run: |
export NODE_OPTIONS="--max_old_space_size=4096"
npm ci
npm run gen-api-docs-all
npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0 - uses: FirebaseExtended/action-hosting-deploy@v0
with: with:
repoToken: '${{ secrets.GITHUB_TOKEN }}' repoToken: '${{ secrets.GITHUB_TOKEN }}'