From 241a909fbc6f9b80b79d716bd0309e9b9ed73ba4 Mon Sep 17 00:00:00 2001 From: Lonli-Lokli Date: Fri, 17 Apr 2026 10:31:31 +0100 Subject: [PATCH] chore: add node version to deployment workflow --- .github/workflows/deployment.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 57f73aa..08dba05 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -32,6 +32,12 @@ jobs: - name: Checkout uses: actions/checkout@v6 + - name: Setup Node + uses: actions/setup-node@v6 + with: + node-version-file: '.node-version' + cache: 'npm' + - name: Npm install run: npm ci