From 0d718a6055258d063b970a3f0813842cb28d370a Mon Sep 17 00:00:00 2001 From: c-d-p Date: Wed, 30 Apr 2025 20:29:14 +0200 Subject: [PATCH] include a node setup in action --- .gitea/workflows/deploy.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 51d3d3e..74002d5 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -32,11 +32,17 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + # Sets up Node + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '21' + # Sets up Python 3.12 environment - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: '3.12.3' + python-version: '3.12' # Cache pip dependencies for faster reruns - name: Cache pip dependencies