hello
I have create gitlab ci/cd script
but script get error
node: command not found
plase help!
thank you
default:
image: node:16
stages:
- Build
NestJs-Bulid:
stage: Build
script:
- node -v
- npm -v
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^(master|develop)$/ || $CI_COMMIT_BRANCH =~ /^(master|develop)$/'
tags:
- my-runner-shell
cache:
paths:
- node_modules/
- .yarn```