create the CI #1

Open
thinkode wants to merge 38 commits from 6-create-the-ci into develop
Showing only changes of commit 20a0cfb3a0 - Show all commits

View File

@@ -12,6 +12,16 @@ jobs:
run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
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: npm -v
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"