mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
18 lines
383 B
YAML
18 lines
383 B
YAML
name: Liberation JS set-up
|
|
description: Sets up the Liberation Javascript environment.
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "16"
|
|
cache: npm
|
|
cache-dependency-path: client/package-lock.json
|
|
|
|
- name: npm ci
|
|
shell: powershell
|
|
run: |
|
|
cd client
|
|
npm ci
|