Skip to content

Commit

Permalink
install dependencies on push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
plusminushalf committed Jun 6, 2024
1 parent ea96b86 commit 6fd4f9c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/on-push-to-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ jobs:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Install dependencies
- name: Install core dependencies
uses: ./.github/actions/install-dependencies

- name: Install dependencies
run: pnpm install

- name: Create Version Pull Request
uses: changesets/action@v1
with:
Expand All @@ -53,9 +56,12 @@ jobs:
- name: Clone repository
uses: actions/checkout@v3

- name: Install dependencies
- name: Install core dependencies
uses: ./.github/actions/install-dependencies

- name: Install dependencies
run: pnpm install

- name: Publish to NPM
uses: changesets/action@v1
with:
Expand Down

0 comments on commit 6fd4f9c

Please sign in to comment.