Skip to content

Commit 4357d41

Browse files
authored
Merge pull request #115 from authzed/dependabot/npm_and_yarn/npm-a860ca7540
build(deps): bump the npm group across 1 directory with 9 updates
2 parents 182c2f4 + e663e6d commit 4357d41

3 files changed

Lines changed: 134 additions & 128 deletions

File tree

.github/workflows/authzed-node.yaml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ jobs:
4646
node-version: ${{ matrix.node-version }}
4747
- uses: bahmutov/npm-install@v1
4848
with:
49+
install-command: yarn --frozen-lockfile --silent
4950
working-directory: ./
50-
- name: Run Yarn lint
51+
- name: Run lint
5152
run: CI=true yarn lint
5253
working-directory: ./
5354
publish-npm:
@@ -61,8 +62,11 @@ jobs:
6162
- uses: actions/setup-node@v4
6263
with:
6364
node-version: 18
64-
- run: npm install
65-
- run: npm test
65+
- uses: bahmutov/npm-install@v1
66+
with:
67+
install-command: yarn --frozen-lockfile --silent
68+
working-directory: ./
69+
- run: yarn test
6670
- uses: battila7/get-version-action@v2
6771
- uses: JS-DevTools/npm-publish@v3
6872
with:
@@ -86,17 +90,18 @@ jobs:
8690
- uses: actions/setup-node@v4
8791
with:
8892
node-version: ${{ matrix.node-version }}
89-
- run: npm install
9093
- uses: bahmutov/npm-install@v1
9194
with:
95+
install-command: yarn --frozen-lockfile --silent
9296
working-directory: ./
9397
- name: Run build
9498
run: yarn build-js-client
9599
working-directory: ./
96100
- uses: bahmutov/npm-install@v1
97101
with:
102+
install-command: yarn --frozen-lockfile --silent
98103
working-directory: ./js-dist
99-
- name: Run Yarn tests
104+
- name: Run tests
100105
run: CI=true yarn only-run-tests
101106
working-directory: ./js-dist
102107
- uses: actions/upload-artifact@v4
@@ -118,7 +123,10 @@ jobs:
118123
- uses: actions/setup-node@v4
119124
with:
120125
node-version: 18
121-
- run: npm install
126+
- uses: bahmutov/npm-install@v1
127+
with:
128+
install-command: yarn --frozen-lockfile --silent
129+
working-directory: ./
122130
- uses: battila7/get-version-action@v2
123131
- uses: JS-DevTools/npm-publish@v3
124132
with:

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@
2727
"build-js-client": "tsc --target es2018 --declaration false --outDir js-dist"
2828
},
2929
"dependencies": {
30-
"@grpc/grpc-js": "^1.10.4",
31-
"@protobuf-ts/runtime": "^2.9.3",
32-
"@protobuf-ts/runtime-rpc": "^2.8.1",
30+
"@grpc/grpc-js": "^1.10.7",
31+
"@protobuf-ts/runtime": "^2.9.4",
32+
"@protobuf-ts/runtime-rpc": "^2.9.4",
3333
"google-protobuf": "^3.15.3"
3434
},
3535
"devDependencies": {
36-
"@protobuf-ts/plugin": "^2.9.3",
36+
"@protobuf-ts/plugin": "^2.9.4",
3737
"@types/jasmine": "^5.1.4",
3838
"@types/jest": "^29.5.12",
3939
"@typescript-eslint/eslint-plugin": "^5.62.0",
4040
"@typescript-eslint/parser": "^5.1.0",
4141
"eslint": "^8.57.0",
4242
"grpc-tools": "^1.11.2",
4343
"jasmine": "^5.1.0",
44-
"ts-node": "^10.9.1",
44+
"ts-node": "^10.9.2",
4545
"typescript": "^5.4"
4646
}
4747
}

0 commit comments

Comments
 (0)