Skip to content

Commit 504db1b

Browse files
committed
chore: update deps & move to pnpm
1 parent 78c06bd commit 504db1b

File tree

5 files changed

+2191
-5563
lines changed

5 files changed

+2191
-5563
lines changed

.github/workflows/lint.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,22 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [16.x]
11+
node-version: [18.x]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
15+
- uses: pnpm/action-setup@v2
16+
with:
17+
version: 8
18+
1519
- name: Use Node.js ${{ matrix.node-version }}
16-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v3
1721
with:
18-
cache: npm
1922
node-version: ${{ matrix.node-version }}
23+
cache: "pnpm"
2024

2125
- name: Install dependencies
22-
run: npm install
26+
run: pnpm install
27+
2328
- name: Run lint
2429
run: npm run lint

.github/workflows/test-tsc.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,22 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [16.x]
11+
node-version: [18.x]
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
15+
- uses: pnpm/action-setup@v2
16+
with:
17+
version: 8
18+
1519
- name: Use Node.js ${{ matrix.node-version }}
16-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v3
1721
with:
18-
cache: npm
1922
node-version: ${{ matrix.node-version }}
23+
cache: "pnpm"
2024

2125
- name: Install dependencies
22-
run: npm install
26+
run: pnpm install
27+
2328
- name: Run test-tsc
2429
run: npm run test-tsc

0 commit comments

Comments
 (0)