Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package-lock.json linguist-vendored
Copy link
Contributor

@lerouxb lerouxb Aug 21, 2025

Choose a reason for hiding this comment

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

what does this mean? (I googled it and it still isn't immediately obvious to me)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

vendored means it won't be counted in statistics (and is also typically collapsed by many git clients). I've changed it to generated as that's more semantically aligned.

package-lock.json -diff
3 changes: 2 additions & 1 deletion .github/workflows/draft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 22.15.1
cache: npm

- name: Determine Next Version
shell: bash
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0

- name: Install npm
run: npm install -g [email protected]
node-version: 22.15.1
cache: npm

- name: Run node-gyp bug workaround script
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-and-build-from-fork.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 22.15.1
cache: npm

- name: Install Dependencies
run: npm ci --omit=optional
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-2019, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false

runs-on: ${{ matrix.os }}
Expand All @@ -34,7 +34,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 22.15.1
cache: npm

- name: Run tests and build
uses: ./.github/workflows/actions/test-and-build
Expand Down
Loading
Loading