From d5a5425d78da706e7dc916729dac56200726d603 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Thu, 3 Jun 2021 13:34:44 +0300 Subject: [PATCH] CI: monitor the website --- .github/workflows/monitor.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/monitor.yaml diff --git a/.github/workflows/monitor.yaml b/.github/workflows/monitor.yaml new file mode 100644 index 00000000..61189af2 --- /dev/null +++ b/.github/workflows/monitor.yaml @@ -0,0 +1,32 @@ +name: Monitor + +on: + schedule: + - cron: '0 0 * * *' # At 00:00 every day + workflow_dispatch: + +jobs: + check-urls: + runs-on: ubuntu-latest + steps: + - name: Check website links accessibility + run: | + curl -ILf https://clover.coex.tech + curl -ILf https://clover.coex.tech/clover_en.pdf + curl -ILf https://clover.coex.tech/clover_ru.pdf + curl -ILf https://clover.coex.tech/connection + curl -ILf https://clover.coex.tech/aruco + curl -ILf https://clover.coex.tech/programming + curl -ILf https://clover.coex.tech/led + curl -ILf https://clover.coex.tech/en/snippets.html + curl -ILf https://clover.coex.tech/en/simulation.html + curl -ILf https://clover.coex.tech/aruco + curl -ILf https://clover.coex.tech/led + curl -ILf https://clover.coex.tech/camera_setup + curl -ILf https://clover.coex.tech/firmware + curl -ILf https://clover.coex.tech/power + curl -ILf https://clover.coex.tech/hostname + curl -ILf https://clover.coex.tech/en/blocks.html + curl -ILf https://clover.coex.tech/en/gpio.html + curl -ILf https://clover.coex.tech/en/leds.html + curl -ILf https://clover.coex.tech/en/simple_offboard.html