Github Actions
Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. You can discover, create, and share actions to perform any job you'd like, including CI/CD, and combine actions in a completely customized workflow.
Refer to official documentation for detailed usage. →
The following YAML workflow file created into the .github/workflows/ci.yml
as a default by superplate, if GitHub Actions selected as a CI plugin.
.github/workflows/ci.yml
tip
The following commands are added to .github/workflows/ci.yml
by superplate if any of plugins listed below is selected during project creation phase.
note
You can use the following commands in case of adding Github Actions to existing project later.
#
Package manager- npm
- yarn
#
Install dependencies- npm
- yarn
#
Run ESlint- npm
- yarn
#
Testing#
Run tests- npm
- yarn
#
Run Cypress E2E Testing- npm
- yarn
#
WebdriverIO E2E Testing- npm
- yarn