Я пытаюсь построить простой конвейер для примера проекта реагирования. Это мой файл .gitlab-ci.yml
image: node:12
stages:
- build
- test
build_react:
stage: build
script:
- echo "Building deploy package"
- yarn install
- yarn build
- echo "Build successful"
artifacts:
expire_in: 1 hour
paths:
- build
test_react:
stage: test
needs: [build_react]
script:
- echo "Testing project"
- yarn test --watchAll=false
- echo "Test successful"
Сборка пройдена, но на этапе тестирования она не удалась с жалобой на
$ react-scripts test --watchAll=false
/bin/sh: 1: react-scripts: not found