Skip to content

Commit e3ed3a1

Browse files
committed
fix(remove-dep-on-ts-proto): Removes unnecessary ts-proto dependency
1 parent 7845131 commit e3ed3a1

File tree

8 files changed

+739
-510
lines changed

8 files changed

+739
-510
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
on:
22
push:
3-
branches: [main]
43
pull_request:
54
name: ci
65
jobs:
76
test:
8-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04
98
strategy:
109
matrix:
1110
node: [18, 20]
1211
include:
1312
# use latest npm by default
14-
- npm-version: latest
13+
- npm-version: 10.9.2
1514
steps:
1615
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
1716
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
@@ -20,5 +19,5 @@ jobs:
2019
- run: node --version
2120
- name: Upgrade to latest npm to support lockfile v2
2221
run: npm install -g npm@${{ matrix.npm-version }}
23-
- run: npm install && npm install
24-
- run: npm run test
22+
- run: npm ci --verbose && npm ci --verbose
23+
- run: npm run test

0 commit comments

Comments
 (0)