コンテンツにスキップ

Github Actions

GitHub Actionsは、ビルド、テスト、デプロイのパイプラインを自動化できる継続的インテグレーションと継続的デリバリー(CI/CD)プラットフォームです。

]

YAMLで記述され、イベント(手動起動、プッシュなど)を契機に1つ以上のjobをstep事に実行する。 Pasted image 20241025101839.png

Community

Github Actionsのツールがいろいろ公開されています。

- name: NPM Audit & Comment
uses: JamesRobertWiseman/pnpm-audit@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
level: critical
fails: true

Marketplace

参考文献