-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(workflows): add setup-netlify-cli action and set used netlify-cl…
…i to v17
- Loading branch information
1 parent
4f4a567
commit 905cb63
Showing
2 changed files
with
16 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
### | ||
# | ||
# NOTE: We've created this action to ensure, we are using the same Netlify-CLI version everywhere | ||
# | ||
### | ||
|
||
name: Setup Netlify CLI | ||
description: Provides node and pnpm in a specific version. | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install netlify-cli | ||
shell: bash | ||
run: pnpm i -g netlify-cli@17 |