From f25d15ed397580312f4601560d659ee0235c0cc8 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Sat, 8 Jun 2024 20:56:00 +1000 Subject: [PATCH] chore: Install node as first action workflow step --- .gitea/workflows/actions.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index a4631e7..c966aaa 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -65,6 +65,10 @@ jobs: # needs: [semrel_dryrun, linting] needs: semrel_dryrun steps: + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 20 - name: Checkout uses: actions/checkout@v4 - name: Install dependencies