foo
Some checks failed
/ build-web (push) Failing after 38s

This commit is contained in:
zeyus 2025-07-21 14:53:21 +02:00
parent 3ab623a080
commit 9ba1483c4e
Signed by: zeyus
GPG key ID: A836639BA719C614

View file

@ -9,7 +9,15 @@ jobs:
steps:
- name: install node
id: node-install
run: apt update && apt -y install nodejs
run: |
apt update
apt install -y ca-certificates curl gnupg
mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
apt update
apt install -y nodejs
- name: Checkout code
uses: actions/checkout@v4