Run scheduled to we get to know when the build breaks because of dependencies (#154)

We do not use a .lock file, as maplibre is a library. Therefore, build could potentially fail if new updates to dependencies are pushed. By building maplibre scheduled we get to know that.
This commit is contained in:
Max Ammann 2022-07-14 08:28:06 +02:00 committed by GitHub
parent 99a74d35df
commit 2b0a352f32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,10 @@
name: Build & Deploy
on:
# We do not use a .lock file, as maplibre is a library. Therefore, build could potentially fail if new updates
# to dependencies are pushed. By building maplibre scheduled we get to know that.
schedule:
- cron: '0 3 * * 5' # Run "At 03:00 on Friday"
workflow_dispatch:
push:
branches: