From 00a1756f05c68ad0002f1f5c33ddd4e710a142c5 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 23 Feb 2023 23:32:54 +0100 Subject: [PATCH] ensure we run on node 19 --- .github/workflows/test-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 20d6442..ea93015 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -10,6 +10,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Setup Node 19 + uses: actions/setup-node@v3 + with: + node-version: '19' + - name: npm-install run: npm install