diff --git a/.gitea/workflows/actions.yml b/.gitea/workflows/actions.yml index ea59d64..3721d78 100644 --- a/.gitea/workflows/actions.yml +++ b/.gitea/workflows/actions.yml @@ -15,10 +15,11 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: '18' + - name: Install Node.js manually + run: | + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - + apt-get install -y nodejs + node -v - name: Set up PHP uses: shivammathur/setup-php@v2