diff --git a/.github/workflows/checks.quality.yaml b/.github/workflows/checks.quality.yaml index 08468192..72bd9300 100644 --- a/.github/workflows/checks.quality.yaml +++ b/.github/workflows/checks.quality.yaml @@ -4,7 +4,7 @@ on: [ push, pull_request ] jobs: lint: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }}-latest strategy: matrix: lint-command: diff --git a/tests/checks/external-urls/StatusChecker/README.md b/tests/checks/external-urls/StatusChecker/README.md index d7c3dec2..078edb21 100644 --- a/tests/checks/external-urls/StatusChecker/README.md +++ b/tests/checks/external-urls/StatusChecker/README.md @@ -105,5 +105,5 @@ console.log(`Status code: ${status.code}`); - This is useful for websites that do not respond to HEAD requests, such as those behind certain CDN or web application firewalls. - Provide patterns as regular expressions (`RegExp`), allowing them to match any part of a URL. - Examples: - - To match any URL starting with "https://example.com/api": `/^https:\/\/example\.com\/api/` - - To match any domain ending with "cloudflare.com": `/^https:\/\/.*\.cloudflare\.com\//` + - To match any URL starting with `https://example.com/api`: `/^https:\/\/example\.com\/api/` + - To match any domain ending with `cloudflare.com`: `/^https:\/\/.*\.cloudflare\.com\//`