install node
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
checks / Check & Test (Frontend + Backend) (push) Failing after 1s
Gitea Actions Demo / Explore-Gitea-Actions (pull_request) Failing after 0s
checks / Check & Test (Frontend + Backend) (pull_request) Failing after 1s

This commit is contained in:
Patrick
2025-10-29 16:57:58 +01:00
parent e413e7d434
commit f04b73eacf

View File

@ -19,10 +19,13 @@ jobs:
echo "Branch: ${{ gitea.ref }}" echo "Branch: ${{ gitea.ref }}"
echo "Repository: ${{ gitea.repository }}" echo "Repository: ${{ gitea.repository }}"
- name: Set up Node.js - name: Install Node.js, npm, and Yarn
uses: actions/setup-node@v4 run: |
with: sudo apt update
node-version: 20 sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt install -y nodejs
sudo npm install -g yarn
- name: Checkout repository manually - name: Checkout repository manually
env: env: