前提・実現したいこと
masterにマージされた際に、circleCIを走らせようとしています。
現状は次項のエラーが表示され、circleCIが止まってしまいます。
次項のエラーを解決したいです。
発生している問題・エラーメッセージ
#!/bin/sh -eo pipefail # Unable to parse YAML # mapping values are not allowed here # in 'string', line 19, column 18: # filters: # ^ # # ------- # Warning: This configuration was auto-generated to show you the message above. # Don't rerun this job. Rerunning will have no effect. false
該当のソースコード
yml
1version: 2.1 2orbs: 3 node: circleci/node@1.1.6 4jobs: 5 build-and-test: 6 executor: 7 name: node/default 8 steps: 9 - checkout 10 - node/with-cache: 11 steps: 12 - run: yarn install 13 - run: yarn test 14 - run: yarn build 15workflows: 16 build-and-test: 17 jobs: 18 - build-and-test 19 filters: 20 branches: 21 only: 22 - master
試したこと
エラーメッセージをググると、大体のページがインデントの不備が問題であると書いてありました。
なので、
yml
1jobs: 2 - build-and-test 3 filters: 4 branches: 5 only: 6 - master
や、
yml
1jobs: 2 - build-and-test 3 filters: 4 branches: 5 only: 6 - master
と書いてみましたが、エラーに変化がありませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。