LoginSignup
0
0

More than 5 years have passed since last update.

CircleCIをつかってみる

Posted at

私的な導入のながれ

【CircleCI】CircleCI 2.0からはじめる個人での簡単なCI導入方法 - githubとの連携まで - tweeeetyのぶろぐ的めも
http://tweeeety.hateblo.jp/entry/2018/02/09/195345

初期設定の参考にした

Circle CI 2.0で特定のブランチでだけ処理を実行したい
https://blog.sshn.me/posts/circleci-filter-by-branch/

ワークフローを使っていると記述が違うらしい

circleci/node - Docker Hub
https://hub.docker.com/r/circleci/node/

nodeのバージョン指定できた

Gulp 4 task: "Did you forget to signal async completion?" · Issue #45 · sindresorhus/del
https://github.com/sindresorhus/del/issues/45

無名関数を省いて、export const hoge = gulp.series(...); とかでできたっぽい

yarn run gulp hoge

gulp@4.0.0を試してみた | CodeCode
https://codecodeweb.com/blog/459

exportだとこんな感じ。

export function deploySpecificFiles(done) {
    console.log('no deploy specified.');
    done();
}

所感

便利、いまのところ期待よりサクサク動く印象

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0