Files
BetterSEQTA-Plus/.github/actions/setup-node-deps/action.yml
T

15 lines
321 B
YAML

name: Setup Node and dependencies
description: Install Node.js 22.x and npm dependencies.
runs:
using: composite
steps:
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
shell: bash
run: npm install --legacy-peer-deps