GitHub Actions returns error ‘engine Not compatible with your version of node/npm’

Edit your deploy.yml file and update the following:

- uses: actions/setup-node@v3
  with:
    node-version: 18.14
- name: Install Dependencies
  run: npm ci

To this:

- uses: actions/setup-node@v3
  with:
    node-version: 20
- name: Install Dependencies
  run: npm ci