From 02d901f66629c98e173faf8afa9ec73ece2a178e Mon Sep 17 00:00:00 2001 From: Fabio Huser Date: Wed, 13 Dec 2023 19:10:29 +0100 Subject: [PATCH] chore(test_and_deploy): set Node.js version to `lts/iron` See https://github.com/actions/setup-node. --- .github/workflows/test_and_deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 28865f76a..2c17cb77a 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -8,8 +8,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + - name: Set Node Version + uses: actions/setup-node@v4 with: - node-version: 12.x + node-version: lts/iron - name: Install uses: bahmutov/npm-install@v1