* ci(frontend-lint): add frontend package change detection and add validate packed packages lint step * ci(change-detection): add validate-npm-packages.sh to frontend-packages list * ci(gh-workflows): add actions globs to frontend-packages detection * ci(gh-workflows): fix typo - > _ * ci(frontend-lint): add missing needs * chore(i18n): fix publint erroring for custom condition pointing to .cjs file * ci(validate-npm-packages): make profile node16 default * chore(validate-npm-packages): remove shellcheck disable comment
12 lines
288 B
YAML
12 lines
288 B
YAML
name: Setup Node.js
|
|
description: Sets up a node.js environment with presets for the Grafana repository.
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
cache-dependency-path: 'yarn.lock'
|