From 98052fe73998c07a0f5281b461ae15c61b3a9f01 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Tue, 25 Feb 2025 17:31:51 -0800 Subject: [PATCH] Add setup-node step --- .gitea/workflows/publish.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 0f99f94..03a3928 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -10,6 +10,13 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + # Despite not being present in the QuickStart instructions, this step is necessary in order to install `node`, + # which is itself required for `actions/checkout` + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: Check out repository code uses: actions/checkout@v4