Refactor some repeated actions out of workflows.

This commit is contained in:
Dan Albert
2022-06-26 13:06:18 -07:00
parent e751b53241
commit 2a5e12dfc5
6 changed files with 82 additions and 65 deletions

View File

@@ -0,0 +1,15 @@
name: Liberation JS set-up
description: Sets up the Liberation Javascript environment.
runs:
using: composite
steps:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: "16"
- name: npm ci
shell: powershell
run: |
cd client
npm ci