From 48bb2fdf0f1e9d54101369fb8f4b9cc998bfaf07 Mon Sep 17 00:00:00 2001 From: rugk Date: Sun, 10 Jul 2022 00:13:47 +0200 Subject: [PATCH] Use NodeJs v16 for tests So 14 worked, let's try 16. (Actually noticed fedora uses v16 not 14 which makes sense if you see the support time.) --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 319db88d..2b1194e1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -104,7 +104,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: '14' + node-version: '16' cache: 'npm' cache-dependency-path: 'js/package-lock.json'