refresh
All checks were successful
Build software / prepare (push) Successful in 1m50s

This commit is contained in:
2024-06-24 22:35:58 +02:00
parent 3db8a082fd
commit 20a0cfb3a0

View File

@@ -12,6 +12,16 @@ jobs:
run: | run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs sudo apt-get install -y nodejs
node -v
- name: Set up Go 1.20
run: |
GO_VERSION=1.20.6
wget https://golang.org/dl/go$GO_VERSION.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go$GO_VERSION.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
go version
- run: node -v - run: node -v
- run: npm -v - run: npm -v
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!" - run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"