GitHub Action上的Cloud Run App + CI / CD
创建世界一流的CI / CD,您可以从GitHub直接构建,测试和部署云运行应用程序!
您可以在以下Felipe Martinez的文章中看到有关此仓库的更多详细信息:
https://medium.com/femrtnz/how-to-deploy-your-cloud-run-service-using-github-actions-e5b6a6f597a3
Github动作
cicd-github-actions
创建该存储库是为了学习如何使用Github Actions创建CI / CD管道。
结构
name: name of the workflow
on: action that will trigger thisworkflow
jobs: steps to be done
Linter:Eslint测试:Jest(单元和集成)E2E测试:Cypress
指令
首先在项目文件夹中运行npm install
npm start运行webp
适用于Chromatic的GitHub Action
构建您的Storybook并将其发布到Chromatic,并运行视觉回归测试。
这是的包装,也是操作的源代码所在的位置。
入门
在您的git储存库中,创建一个文件.github/workflows/chromatic.yml ,其内容如下:
# .github/workflows/chromatic.yml
# Workflow name
name : ' Chromatic '
# Event for the workflow
on