0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-07 15:39:49 -05:00
penpot-plugins/.github/actions/prepare/action.yml

20 lines
328 B
YAML
Raw Permalink Normal View History

2024-09-06 07:29:03 -05:00
description: Prepares the repo for a CI job
name: Prepare
runs:
steps:
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
shell: bash
using: composite