create the CI #1

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

View File

@@ -5,10 +5,13 @@ jobs:
prepare:
runs-on: ubuntu-latest
steps:
- name: Installing NodeJS...
run: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
- run: source /root/.bashrc
- run: nvm install 20
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js 20
run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
- run: node -v
- run: npm -v
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"