From aa397c4e7cfd9f73ba43464ca1fa19b001a9d649 Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Sat, 8 Jul 2023 18:26:24 -0700 Subject: [PATCH 1/2] feat: extend unit testing to node 20 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a975b43f..baaa728d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: node-version: - 16 - 18 - - 19 + - 20 steps: - uses: actions/checkout@v3 From 4c164fad634b1f3ade86167828b716776f664499 Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Sat, 8 Jul 2023 18:29:37 -0700 Subject: [PATCH 2/2] ci: changing the smoketest to only run once a day --- .github/workflows/smoketest.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/smoketest.yml b/.github/workflows/smoketest.yml index 5c8901fc..7b6e87d1 100644 --- a/.github/workflows/smoketest.yml +++ b/.github/workflows/smoketest.yml @@ -1,10 +1,8 @@ name: smoketest on: - push: - branches: - - main - pull_request: + schedule: + - cron: '30 0 * * *' # every day at 12:30am UTC concurrency: group: ${{ github.head_ref }}