From 0e59fdf9a31d91daf062f86ac9f750e604ba4f76 Mon Sep 17 00:00:00 2001 From: Carl-Erik Kopseng Date: Fri, 13 Sep 2024 01:02:21 +0200 Subject: [PATCH] Revert "Use Node 22 in runners" This reverts commit 9db8b5969a6b850eda6003bdf3ebbe223cee0131. Tests using FileReader fails for whatever reason. Not sure how they worked to begin with in Node 16? --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 210c393..a3bf122 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "22" + node-version: "16" - name: Cache modules uses: actions/cache@v2 with: @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "22" + node-version: "16" - name: Cache modules uses: actions/cache@v2 with: @@ -58,7 +58,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "22" + node-version: "16" - name: Cache npm uses: actions/cache@v2 with: @@ -82,7 +82,7 @@ jobs: strategy: matrix: - node-version: [22] + node-version: [16] steps: - uses: actions/checkout@v2