Posodobitev CI/CD workflow: dodana Node.js v20 in avtomatska posodobitev package-lock.json
Build and Deploy / build-and-deploy (push) Failing after 30s Details

This commit is contained in:
Mark Poljanšek 2025-04-23 20:46:35 +02:00
parent 6c82dfc064
commit 912f838288
1 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
- name: Update package lock
run: npm install --package-lock-only
- name: Install dependencies
run: npm ci