Commits
Mark H. Wood authored 7690d36e4b5
18 18 | DSPACE_REST_HOST localhost |
19 19 | DSPACE_REST_PORT 8080 |
20 20 | DSPACE_REST_NAMESPACE '/server' |
21 21 | DSPACE_REST_SSL false |
22 22 | # When Chrome version is specified, we pin to a specific version of Chrome |
23 23 | # Comment this out to use the latest release |
24 24 | #CHROME_VERSION: "90.0.4430.212-1" |
25 25 | strategy |
26 26 | # Create a matrix of Node versions to test against (in parallel) |
27 27 | matrix |
28 - | node-version 14.x 16.x |
28 + | node-version 16.x 18.x |
29 29 | # Do NOT exit immediately if one matrix job fails |
30 30 | fail-fast false |
31 31 | # These are the actual CI steps to perform per job |
32 32 | steps |
33 33 | # https://github.com/actions/checkout |
34 34 | name Checkout codebase |
35 35 | uses actions/checkout@v3 |
36 36 | |
37 37 | # https://github.com/actions/setup-node |
38 38 | name Install Node.js $ matrix.node-version |