0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-06 14:50:21 -05:00
penpot-plugins/.github/actions/prepare/action.yml
2024-09-09 09:00:55 +02:00

19 lines
328 B
YAML

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