github actions

background

How to send Github commits and PR logs to ElasticSearch using a custom script

Reading Time: 6 minutes Hello Readers!! In this blog, we will see how we can send GitHub commits and PR logs to Elasticsearch using a custom script. Here we will use a bash script that will send GitHub logs to elasticsearch. It will create an index in elasticsearch and push there the logs. After sending logs to elasticsearch we can visualize the following github events in kibana:- 1. GitHub Continue Reading

How To Quality-Check Python Code Using Pylint On CI?

Reading Time: 2 minutes In this article, we will talk about how to quality-check Python code using Pylint on CI. Code Quality Through CI As we know, code quality is an important aspect of any project. It is the responsibility of every developer to quality-check the code before pushing it to the repository. However, to enforce this and implement the concepts of Continuous Integration (CI), we need to have Continue Reading

A Quick Overview Of Github Action With Selenium Webdriver

Reading Time: 6 minutes Hi folks, In this short blog, we will explore more about Selenium, the testing tool we love and that is most often used, using Github action. You could wonder, however, why we combine the GitHub action with the Selenium framework and what the circumstances are. So let’s skip the introduction of Selenium as everyone is already familiar with the fundamentals of it. Instead, let’s begin Continue Reading

How to configure Sonar Code-Quality Checks in Github Action

Reading Time: 3 minutes This blog will help you how to configure Sonar Code-Quality Checks in Github Action. What is Code Quality? Quality code defines the code that functions as intended for end-users without any deficiencies. While code quality measures differently by every team. In general, it comes down to a subjective measure of common factors like maintainability, testability, readability, security, and more. Some automated tools can also analyze Continue Reading

How to Configure Java CI with Maven Checks in Github Action

Reading Time: 4 minutes This blog will help you to have how to configure Java CI with Maven Checks in Github Action. What is Github Action? GitHub Actions is a CI/CD platform that allows you to automate your build, test, and deployment of pipelines. You can create workflows that build and test and automate every pull request to your repository. And deploy merged pull requests to production. All GitHub Continue Reading

How To Execute Tests Parallelly using Cypress And GitHub Actions

Reading Time: 3 minutes Hello Readers!!In today’s world when the time is money, it is very important to lower the operational time for various actions. The same goes with test execution. One of the popular ways to achieve execution of more test cases in lesser time is by parallel test execution. Before learning how to execute tests parallelly using Cypress, let’s have a walkthrough of Parallel Test Execution and Continue Reading

How to test API load with k6 using GitHub Actions

Reading Time: 5 minutes Hi friends, As we are all familiar with CI/CD and it has taken a very crucial place in the software development industry. Along with our development code therefore it is very important to integrate our automated tests with CI/CD as well. But you may think that we already have Jenkins and other CICD tools available in the market so why do we use GITHUB action Continue Reading

github actions

How to Create CI for Maven Project using GH Actions?

Reading Time: 4 minutes Hello, Readers so from the topic itself you might have guessed about today’s Blog Content. Today we will be learning how we can build a CI Pipeline for a Maven application using Github Actions, in that pipeline we will define the various steps like building, Testing, and Packaging the application. Prerequisites – You should have a Java application pushed onto a Github repository. Being Familiar Continue Reading

github secrets

How to Manage Secrets in Github?

Reading Time: 3 minutes Secrets in Github help us to store and manage our Credentials and sensitive information and You can also reuse them in GitHub Actions. Let’s understand how it works in Github Actions and How we can manage them. Before Digging Deep into Managing. Let’s Understand its different levels. Levels of Secrets There are 3 Levels Organizatinal Level Repository Level Environment Level Let’s discuss these in detail. Continue Reading

GitHub Actions – How To Create CI/CD Pipeline

Reading Time: 4 minutes Hello Readers! In this blog, we are going to learn how we can Create CI/CD Pipeline for nodejs Applications using GitHub Actions. Node.js Application Node.js is an open-source, cross-platform runtime environment for developing server-side and network-side applications. These applications are written in JavaScript and can run in the Node.js runtime on OS X, Microsoft Windows, and Linux. It also provides a rich library of various Continue Reading

Manual Trigger In GitHub Actions

Reading Time: 4 minutes This blog will give you an idea of the different options in which we can implement manual trigger using GitHub Actions.In this we will have the answer of following question. Is there a way to trigger a workflow manually in GitHub Actions? There are different event by using which we can trigger the workflow like push, pull-request and many more. You can the detail information Continue Reading