ci(server): run CI job daily so we catch issues with runner changes (#1567)

* ci(server): run CI job daily so we catch issues with runner changes

* Format.
This commit is contained in:
Sander Bruens 2024-07-23 14:28:42 -04:00 committed by GitHub
parent b16fc38649
commit 00f345ad98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,8 @@ on:
push:
branches:
- master
schedule:
- cron: "0 13 * * *" # Run daily at 1PM UTC.
jobs:
lint:
@ -65,10 +67,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Install Outline Server
run: ./src/server_manager/install_scripts/install_server.sh --hostname localhost
- name: Test API
run: 'curl --silent --fail --insecure $(grep "apiUrl" /opt/outline/access.txt | cut -d: -f 2-)/server'