Skip to content
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 .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ matrix.node-version }}
- run: npm install --verbose
- run: npm ci --verbose
- run: npm test
- name: Upload coverage to Codecov
if: matrix.node-version == '22.x'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
node-version: 24

- name: Install dependencies
run: npm install --verbose
run: npm ci --verbose

- name: Create or update release PR
id: changesets
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
registry-url: "https://registry.npmjs.org"

- name: Install dependencies
run: npm install --verbose
run: npm ci --verbose

- name: Publish to npm and create GitHub releases
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf # v1.7.0
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# node / npm stuff
/node_modules
/package-lock.json

# build products
/dist
Expand Down
Loading