mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-06 14:50:21 -05:00
19 lines
328 B
YAML
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
|