Skip to content

uplimit/website-healthcheck

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Website Healthcheck Action

This actions checks your website if it's returning status code 200 and checks for specified text on the given page.

An example of website-healthcheck in a GitHub Action:

name: "Check for website health and title text"

on: [push]

jobs:
  health_check_job:
    runs-on: ubuntu-latest
    name: Check for status 200 and title text "lokerse.dev"
    steps:
      - uses: actions/checkout@v2
      - id: test
        uses: uplimit/website-healthcheck@v4
        with:
          web-url: "https://uplimit.com"
          scan-for-text: "uplimit"
          maximum-retries: 10
          duration-between-retries: 5

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%