forked from ampproject/amp-wp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Weston Ruter <[email protected]>
- Loading branch information
1 parent
6ae9f48
commit c86bdb1
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name: Setup Node and NPM | ||
name: Setup Node.js and npm | ||
|
||
description: Setup Node and NPM with caching | ||
description: Setup Node.js and npm with caching | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Configure NodeJS cache | ||
- name: Configure Node.js cache | ||
uses: actions/[email protected] | ||
id: node-npm-cache | ||
env: | ||
|
@@ -14,7 +14,7 @@ runs: | |
path: node_modules | ||
key: ${{ runner.os }}-node_modules-${{ hashFiles('package*.json') }}-${{ hashFiles('.github/actions/setup-node-npm/action.yml') }} | ||
|
||
- name: Setup NodeJS | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|