create-node-lib 2.9.6 → 2.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.9.8](https://github.com/lirantal/create-node-lib/compare/v2.9.7...v2.9.8) (2026-02-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update release workflow ([ed70308](https://github.com/lirantal/create-node-lib/commit/ed7030886a81b32274f4ce5bf23d2005e0c2b3bf))
|
|
7
|
+
|
|
8
|
+
## [2.9.7](https://github.com/lirantal/create-node-lib/compare/v2.9.6...v2.9.7) (2026-02-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Upgrade Node setup and Codecov action versions ([78af575](https://github.com/lirantal/create-node-lib/commit/78af57536edbbffbd3e644bbe79079e127a34789))
|
|
14
|
+
|
|
1
15
|
## [2.9.6](https://github.com/lirantal/create-node-lib/compare/v2.9.5...v2.9.6) (2026-02-22)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
runs-on: ${{matrix.platform}}
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v4
|
|
15
|
-
- uses: actions/setup-node@
|
|
15
|
+
- uses: actions/setup-node@v6
|
|
16
16
|
with:
|
|
17
17
|
node-version: ${{matrix.node}}
|
|
18
18
|
- name: install dependencies
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
- name: run tests
|
|
25
25
|
run: npm run test
|
|
26
26
|
- name: coverage
|
|
27
|
-
uses: codecov/codecov-action@
|
|
27
|
+
uses: codecov/codecov-action@v5
|
|
28
28
|
if: github.actor != 'dependabot[bot]'
|
|
29
29
|
with:
|
|
30
30
|
fail_ci_if_error: true
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
needs: test
|
|
39
39
|
steps:
|
|
40
40
|
- uses: actions/checkout@v4
|
|
41
|
-
- uses: actions/setup-node@
|
|
41
|
+
- uses: actions/setup-node@v6
|
|
42
42
|
with:
|
|
43
43
|
node-version: "22.x"
|
|
44
44
|
- name: install dependencies
|
|
@@ -18,10 +18,12 @@ jobs:
|
|
|
18
18
|
timeout-minutes: 20
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
steps:
|
|
21
|
-
- uses: actions/checkout@
|
|
21
|
+
- uses: actions/checkout@v6
|
|
22
22
|
- uses: actions/setup-node@v6
|
|
23
23
|
with:
|
|
24
24
|
node-version: 24.x
|
|
25
|
+
- name: Update npm
|
|
26
|
+
run: npm update -g npm
|
|
25
27
|
- name: install dependencies
|
|
26
28
|
run: npm ci
|
|
27
29
|
- name: build project
|
|
@@ -36,3 +38,4 @@ jobs:
|
|
|
36
38
|
env:
|
|
37
39
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
38
40
|
NPM_CONFIG_PROVENANCE: true
|
|
41
|
+
NPM_TOKEN: ''
|