我是 TU 的新手,我尝试学习如何使用“CircleCI”,这是我的测试代码:
jobs:
run_tests:
docker:
- image: circleci/node:12
steps:
- run:
name: run unit test
command: |
cd ../client_web && yarn test
- store_test_results:
path: test-results
- store_artifacts:
path: test-results
workflows:
build_test:
jobs:
- run_tests
它给了我错误:“我们找不到文件夹 client-web”我不明白为什么他们找不到我的位置
(我当然尝试过首先做 cd client_web)
我的项目是这样的:
babycare/
client_web/
api/
Readme
感谢您的回答