Commits
Tim Donohue authored and GitHub committed ba4d6528069 Merge
24 24 | DSPACE_UI_HOST 127.0.0.1 |
25 25 | DSPACE_UI_PORT 4000 |
26 26 | # Ensure all SSR caching is disabled in test environment |
27 27 | DSPACE_CACHE_SERVERSIDE_BOTCACHE_MAX 0 |
28 28 | DSPACE_CACHE_SERVERSIDE_ANONYMOUSCACHE_MAX 0 |
29 29 | # Tell Cypress to run e2e tests using the same UI URL |
30 30 | CYPRESS_BASE_URL http //127.0.0.14000 |
31 31 | # When Chrome version is specified, we pin to a specific version of Chrome |
32 32 | # Comment this out to use the latest release |
33 33 | #CHROME_VERSION: "90.0.4430.212-1" |
34 + | # Bump Node heap size (OOM in CI after upgrading to Angular 15) |
35 + | NODE_OPTIONS '--max-old-space-size=4096' |
34 36 | strategy |
35 37 | # Create a matrix of Node versions to test against (in parallel) |
36 38 | matrix |
37 39 | node-version 16.x 18.x |
38 40 | # Do NOT exit immediately if one matrix job fails |
39 41 | fail-fast false |
40 42 | # These are the actual CI steps to perform per job |
41 43 | steps |
42 44 | # https://github.com/actions/checkout |
43 45 | name Checkout codebase |