Compare commits

..

No commits in common. "7dcc8408c23a9ab71f68b6af05abc69c95386208" and "25056cfcf9034f55bd2eb60aaf7b60adc302694f" have entirely different histories.

2 changed files with 3 additions and 9 deletions

View File

@ -1,9 +0,0 @@
kind: pipeline
name: default
steps:
- name: build
image: node
commands:
- yarn install --frozen-lockfile
- yarn build --prod --prefix-paths

View File

@ -23,6 +23,9 @@ function getNextTopicDate() {
// first thursday and third tuesday in month // first thursday and third tuesday in month
const nextTopic = zeroizeTime(today) const nextTopic = zeroizeTime(today)
nextTopic.setMonth(5)
nextTopic.setDate(1)
// first thursday // first thursday
if (calculatePriorWeekdays(nextTopic, THURSDAY) === 0) { if (calculatePriorWeekdays(nextTopic, THURSDAY) === 0) {
addDays(nextTopic, getDaysUntilNext(THURSDAY, nextTopic)) addDays(nextTopic, getDaysUntilNext(THURSDAY, nextTopic))