The config in action.yml overrides any previously set node version (e.g. via actions/setup-node):
This causes failures if the project requires a more recent version, or it depends on a recent version of @cypress/react >= v5.7.0
Ideally the action should use any version of node already available, or have a configuration switch to explicitly set the desired version (similar to actions/setup-node).
The config in
action.ymloverrides any previously set node version (e.g. viaactions/setup-node):github-action/action.yml
Line 87 in ffbc361
This causes failures if the project requires a more recent version, or it depends on a recent version of @cypress/react >= v5.7.0
Ideally the action should use any version of node already available, or have a configuration switch to explicitly set the desired version (similar to
actions/setup-node).