mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Renamed CTLD plugin settings to Retribution, as well as some other miscellaneous files too.
18 lines
385 B
YAML
18 lines
385 B
YAML
name: Retribution JS set-up
|
|
description: Sets up the Retribution Javascript environment.
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "16"
|
|
cache: npm
|
|
cache-dependency-path: client/package-lock.json
|
|
|
|
- name: npm ci
|
|
shell: powershell
|
|
run: |
|
|
cd client
|
|
npm ci
|