Skip to content

Commit

Permalink
chore: install node_modules in draft workflows
Browse files Browse the repository at this point in the history
Needed by the prettier formatter
  • Loading branch information
ilyvion committed Feb 3, 2024
1 parent 8662509 commit 2660087
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/draft_new_hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install Node modules
run: npm ci

- name: Create hotfix branch
run: git checkout -b hotfix/${{ github.event.inputs.version }}

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/draft_new_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install Node modules
run: npm ci

- name: Create release branch
run: git checkout -b release/${{ github.event.inputs.version }}

Expand Down

0 comments on commit 2660087

Please sign in to comment.