CI: install Node.js before using JavaScript actions
Some checks failed
CI / build (push) Failing after 2s

This commit is contained in:
2026-06-23 20:25:22 +03:30
parent 0bb5db46d0
commit 9ed38c7514

View File

@@ -9,6 +9,11 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install Node.js (required for GitHub Actions)
run: |
sudo apt-get update
sudo apt-get install -y nodejs
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with: