From c70620e88cd4f0a49987fdcce0e6163c3aa58d9f Mon Sep 17 00:00:00 2001 From: djpbessems Date: Sat, 8 Jun 2024 21:03:15 +1000 Subject: [PATCH] build: Explicitly install node through package manager --- .gitea/workflows/actions.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index c966aaa..31df632 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -66,9 +66,12 @@ jobs: needs: semrel_dryrun steps: - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 20 + run: | + apt-get update && apt-get install -y --no-install-recommends \ + npm + npm install npm@latest -g + npm install n -g + n latest - name: Checkout uses: actions/checkout@v4 - name: Install dependencies