-
Notifications
You must be signed in to change notification settings - Fork 1
Changeset comment feature + notes comment feature #88
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
Changes from all commits
919fa6a
035a250
da161c3
d32973a
63b7c43
04e63f0
33577f4
675b528
bd59a82
2525ac8
03e45aa
7d699ec
f11570f
b74fd0b
d395901
b54c182
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ jobs: | |
| # Runs `nuxt prepare` via the postinstall hook, which generates the .nuxt | ||
| # types + eslint typegen that both `lint` and `typecheck` rely on. | ||
| - name: Install dependencies | ||
| run: npm ci | ||
| run: npm install | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep CI lockfile-deterministic.
#!/usr/bin/env bash
set -euo pipefail
test -f package-lock.json
npm install --dry-run --ignore-scripts
git diff --exit-code -- package-lock.json🤖 Prompt for AI Agents |
||
|
|
||
| # The quality steps below use `if: ${{ !cancelled() }}` so every check runs | ||
| # and reports its own result even when an earlier one fails. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,3 +28,5 @@ logs | |
| /playwright-report/ | ||
| /blob-report/ | ||
| /playwright/.cache/ | ||
| /.claude | ||
| /.claude | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious, why not keep
ci? Wasn't it designed for this environment?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It uses the .lock file to avoid having to re-resolve the dependencies, so it's ideal to use here, but when I dev on my Mac and this runs on Linux the versions of the dependencies aren't the same unf.