Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faisalamin001/github_actions
GitHub Actions Playground: Exploring Automated CI/CD and Deployment Workflows.
https://github.com/faisalamin001/github_actions
Last synced: 1 day ago
JSON representation
GitHub Actions Playground: Exploring Automated CI/CD and Deployment Workflows.
- Host: GitHub
- URL: https://github.com/faisalamin001/github_actions
- Owner: faisalamin001
- Created: 2023-12-09T13:52:28.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2023-12-12T16:24:15.000Z (11 months ago)
- Last Synced: 2023-12-12T18:41:37.020Z (11 months ago)
- Language: CSS
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CI/CD with GitHub Actions
Welcome to my GitHub repository where I'm exploring Continuous Integration (CI) and Continuous Deployment (CD) using GitHub Actions.
## Overview
This repository serves as a playground to experiment with automating various aspects of the software development lifecycle, from building and testing to deploying applications.
## Workflows
### CI Workflow
The [action_1.yml](.github/workflows/ci.yml) workflow is triggered on every push to the `master` branch. It includes basic steps to check out the code, set up Node.js, install dependencies, and build the project.
### PR Created Workflow
The [action_1.yml](.github/workflows/pr_created.yml) workflow runs when a pull request is opened for the `master` branch. It's a starting point for exploring actions specific to pull request creation.
## How to Use
Feel free to explore the workflows and adapt them to your own projects. Experiment with different actions, customize the workflows, and see how GitHub Actions can streamline your development processes.
## Contributions
If you have suggestions or improvements, please open an issue or submit a pull request. This repository is a collaborative space for learning and sharing knowledge.
Happy coding!