Olá, segue um exemplo para fazer verificações se hoje é feriado, e retornar a resposta.
Script:
function run() {
const holidays = s“28/3/2022”, “2/12/2021”, “29/4/2022”]
//Put the list of Dates.
const data = new Date()
const day = data.getDate().toString()
const month = (data.getMonth() + 1).toString()
const year = data.getFullYear().toString()
const today = day + “/” + month + “/” + year
return holidays.includes(today)
}
Talvez de para melhorar, caso coloque as datas vindo de um outro local, como um arquivo de texto simples.