-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change(npm): without global install, add package-lock.json
- Loading branch information
1 parent
08467b8
commit 4a2303e
Showing
3 changed files
with
47 additions
and
11 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 |
---|---|---|
|
@@ -23,7 +23,7 @@ runs: | |
ref: change/composite-action | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
cache: 'pip' | ||
|
@@ -37,20 +37,13 @@ runs: | |
shell: bash | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Cache npm dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.npm/_cacache | ||
key: node-${{ hashFiles('package-lock.json') }} | ||
restore-keys: | | ||
node- | ||
cache: 'npm' | ||
|
||
- name: Install markdown2confluence | ||
run: npm install -g @shogobg/[email protected] | ||
run: npm install @shogobg/[email protected] | ||
shell: bash | ||
|
||
- name: Run sync_to_jira.py | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,5 @@ | ||
{ | ||
"dependencies": { | ||
"@shogobg/markdown2confluence": "^0.1.6" | ||
} | ||
} |