From 7c1ef6245fc54c2c7b59ae1ffbc046df09d1f067 Mon Sep 17 00:00:00 2001 From: ignoramous Date: Tue, 20 Feb 2024 17:45:27 +0530 Subject: [PATCH] gh-action: node v21 and deno v1.40 for profiler --- .github/workflows/profiler.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/profiler.yml b/.github/workflows/profiler.yml index 03abc64574..045ed7044b 100644 --- a/.github/workflows/profiler.yml +++ b/.github/workflows/profiler.yml @@ -40,8 +40,8 @@ env: GIT_REF: ${{ github.event.inputs.git-ref || github.ref }} JS_RUNTIME: 'node' MAXTIME_SEC: '30s' - NODE_VER: '19.x' - DENO_VER: '1.29.3' + NODE_VER: '21.x' + DENO_VER: '1.40.x' MODE: 'p1' QDOH: 'q' @@ -89,6 +89,7 @@ jobs: - name: 🥝 Deno deps if: env.JS_RUNTIME == 'deno' run: | + deno task prepare deno cache ./src/server-deno.ts # if non-interactive, prefer apt-get: unix.stackexchange.com/a/590703