1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore: reduce build time (#4405)

## About the changes
~~Test if max-workers can speed up test runs~~ No, this didn't help.
Disabling the job that takes longer should help mitigate. We lose the
coverage report but we still test our code:
https://github.com/Unleash/unleash/actions/runs/5751945832/job/15591813034?pr=4405#step:7:2396

This cuts the build time by 50% and moving this to a daily schedule
This commit is contained in:
Gastón Fournier 2023-08-04 11:51:18 +02:00 committed by GitHub
parent 885f88407a
commit 043a3a10ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,13 @@
name: PR -> Test & Coverage
name: Test & Coverage
on:
pull_request:
paths-ignore:
- frontend/**
- website/**
# pull_request:
# paths-ignore:
# - frontend/**
# - website/**
schedule: # Run every day
- cron: '0 8 * * *'
workflow_dispatch:
jobs:
build: