Skip to content

Commit

Permalink
ci: run after installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jeangovil committed Oct 16, 2023
1 parent e9dafa1 commit 89d9e1a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/canary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
yarn install --frozen-lockfile
yarn lerna link
- name: Publish
id: publish
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
yarn install --frozen-lockfile
yarn lerna link
- name: Check for changed packages
id: changes
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
yarn install --frozen-lockfile
yarn lerna link
- name: Bump versions
id: bump
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
yarn install --frozen-lockfile
yarn lerna link
- name: Bump versions
id: bump
Expand Down

0 comments on commit 89d9e1a

Please sign in to comment.