From 94f9e081afa5f77df4d0881b48bac64d5cc6c3d5 Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Sat, 10 Jun 2023 17:40:45 -0400 Subject: [PATCH] Update build.yml to install node --- .gitea/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1f66eb0..87e3ca0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,7 +7,9 @@ jobs: runs-on: docker steps: - name: Setup node.js - run: apk --update add nodejs npm + shell: sh + run: | + apk --update add nodejs npm - run: npm ci - run: npm test - name: Check out repository code