Skip to content
Closed
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
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ jobs:

- name: Install dependencies
if: steps.check-published.outputs.already_published == 'false'
run: npm install
# npm ci installs exactly what the lockfile says. `npm install` re-resolved
# peers on every run, so an upstream publish could break CI between a
# PR's green run and its merge (2026-09-09: react-dom 19.3.0 arrived
# two minutes before react 19.3.0 did).
run: npm ci

- name: Build
if: steps.check-published.outputs.already_published == 'false'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ jobs:
run: npm install -g npm@11

- name: Install dependencies
run: npm install
# npm ci installs exactly what the lockfile says. `npm install` re-resolved
# peers on every run, so an upstream publish could break CI between a
# PR's green run and its merge (2026-09-09: react-dom 19.3.0 arrived
# two minutes before react 19.3.0 did).
run: npm ci

- name: Check formatting
run: npm run format:check
Expand Down
Loading