Skip to content

Commit 2c2745d

Browse files
authored
feat(deps)!: update deps addressing issue with minimatch (#128)
BREAKING CHANGE: node 20 || >=22 is now required due to transitive deps.
1 parent 6fc80b7 commit 2c2745d

File tree

7 files changed

+1045
-4633
lines changed

7 files changed

+1045
-4633
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
node-version: [12.x, 14.x, 16.x, 17.x]
9+
node-version: [20, 24]
1010
platform:
1111
- os: ubuntu-latest
1212
shell: bash
@@ -33,7 +33,7 @@ jobs:
3333
node-version: ${{ matrix.node-version }}
3434

3535
- name: Install dependencies
36-
run: npm install
36+
run: npm ci --engine-strict
3737

3838
- name: Run Tests
3939
run: npm test -- -c -t0
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
name: release-please
6+
jobs:
7+
release-please:
8+
runs-on: ubuntu-latest
9+
if: github.repository == 'istanbuljs/istanbul-lib-processinfo'
10+
steps:
11+
- uses: google-github-actions/release-please-action@v4
12+
id: release
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
config-file: release-please-config.json
16+
manifest-file: .release-please-manifest.json

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "2.0.0"
3+
}

0 commit comments

Comments
 (0)