Commits
Giuseppe Digilio authored e0855a46cc5
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 34 | # Bump Node heap size (OOM in CI after upgrading to Angular 15) |
35 35 | NODE_OPTIONS '--max-old-space-size=4096' |
36 36 | # Project name to use when running docker-compose prior to e2e tests |
37 37 | COMPOSE_PROJECT_NAME 'ci' |
38 38 | strategy |
39 39 | # Create a matrix of Node versions to test against (in parallel) |
40 40 | matrix |
41 - | node-version 16.x 18.x |
41 + | node-version 18.x 20.x |
42 42 | # Do NOT exit immediately if one matrix job fails |
43 43 | fail-fast false |
44 44 | # These are the actual CI steps to perform per job |
45 45 | steps |
46 46 | # https://github.com/actions/checkout |
47 47 | name Checkout codebase |
48 48 | uses actions/checkout@v4 |
49 49 | |
50 50 | # https://github.com/actions/setup-node |
51 51 | name Install Node.js $ matrix.node-version |