Commits
Yura Bondarenko authored cad76ff3782
12 12 | env |
13 13 | # The ci step will test the dspace-angular code against DSpace REST. |
14 14 | # Direct that step to utilize a DSpace REST service that has been started in docker. |
15 15 | DSPACE_REST_HOST localhost |
16 16 | DSPACE_REST_PORT 8080 |
17 17 | DSPACE_REST_NAMESPACE '/server' |
18 18 | DSPACE_REST_SSL false |
19 19 | # When Chrome version is specified, we pin to a specific version of Chrome |
20 20 | # Comment this out to use the latest release |
21 21 | #CHROME_VERSION: "90.0.4430.212-1" |
22 + | NODE_OPTIONS "--max_old_space_size=4096" |
22 23 | strategy |
23 24 | # Create a matrix of Node versions to test against (in parallel) |
24 25 | matrix |
25 26 | node-version 12.x 14.x |
26 27 | # Do NOT exit immediately if one matrix job fails |
27 28 | fail-fast false |
28 29 | # These are the actual CI steps to perform per job |
29 30 | steps |
30 31 | # https://github.com/actions/checkout |
31 32 | name Checkout codebase |