Update build.yml to install node
rtj.dev Build and Deploy / Build-and-Deploy (push) Failing after 6s Details

This commit is contained in:
Roland Thomas 2023-06-10 17:40:45 -04:00
parent 4886b4dcbe
commit 94f9e081af
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ jobs:
runs-on: docker runs-on: docker
steps: steps:
- name: Setup node.js - name: Setup node.js
run: apk --update add nodejs npm shell: sh
run: |
apk --update add nodejs npm
- run: npm ci - run: npm ci
- run: npm test - run: npm test
- name: Check out repository code - name: Check out repository code