Help with GitHub actions on Module 2.4.2 - MoT Foundations JavaScript

I am working my way through the MoT Foundation course and am on the GitHub actions part and need some help. (Screenshot attached), not sure if I just need to update my build_test_react.yml file to have a specific node version?

1 Like

You can but thats not the error. If you want to upgrade you can do:

    - name: Setup Node.js
      uses: actions/setup-node@v3
      with:
        node-version: 20

drill down into the failed task to see what the actual error is. You dont have to update node version its just no longer supported, im assuming that because the instructions havent been updated in foundation course all the libs that are used are still compatible with node 18

2 Likes