Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add changeset status step to CI workflow #607

Merged
merged 8 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"baseBranch": "origin/main",
"updateInternalDependencies": "patch",
"ignore": []
}
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
# https://github.com/changesets/changesets/issues/1055
fetch-depth: 0
Comment on lines -25 to +26
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I'm looking at it right, I'm seeing a difference only in couple seconds for "Check out code" https://github.com/status-im/status-web/actions/runs/11293559287/job/31411965124?pr=607 in comparison to other workflow runs https://github.com/status-im/status-web/actions.


- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand All @@ -35,6 +36,10 @@ jobs:
node-version: 20.18.0
cache: 'pnpm'

- name: Changeset
# https://github.com/changesets/changesets/issues/1048
run: pnpm dlx @changesets/cli status --since origin/main

- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down
Loading