Compare commits

...
2 Commits
Author SHA1 Message Date
robin 495ec3cc6c Merge pull request 'Added node installation step to deploy.yml' (#40) from dev into main
Build and Deploy / sync-dev (push) Skipped
Build and Deploy / build-and-deploy (push) Failing after 5m12s
2026-09-06 17:54:07 +02:00
robin 3bc7bc6251 fix: added node installation step to deploy.yml 2026-09-06 17:53:34 +02:00
+4 -1
View File
@@ -18,7 +18,10 @@ jobs:
image: golang:1.27-bookworm
steps:
- name: Install system dependencies
run: apt-get update && apt-get install -y --no-install-recommends git openssh-client
run: |
apt-get update && apt-get install -y --no-install-recommends git openssh-client curl
curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
apt-get install -y nodejs
- name: Checkout
uses: actions/checkout@v4