Skip to content

Commit 2660087

Browse files
committed
chore: install node_modules in draft workflows
Needed by the prettier formatter
1 parent 8662509 commit 2660087

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/draft_new_hotfix.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616

17+
- name: Install Node modules
18+
run: npm ci
19+
1720
- name: Create hotfix branch
1821
run: git checkout -b hotfix/${{ github.event.inputs.version }}
1922

.github/workflows/draft_new_release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616

17+
- name: Install Node modules
18+
run: npm ci
19+
1720
- name: Create release branch
1821
run: git checkout -b release/${{ github.event.inputs.version }}
1922

0 commit comments

Comments
 (0)