Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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-generated
package-lock.json -diff
4 changes: 0 additions & 4 deletions .github/workflows/actions/test-and-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ runs:
fi
shell: bash

- name: Install npm
run: npm install -g [email protected]
shell: bash

- name: Install Dependencies
shell: bash
run: |
Expand Down
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