Skip to content

Commit 91b67bd

Browse files
committed
ci: update to action to node 20
1 parent 529b46f commit 91b67bd

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
name: Test
22

3-
on: [push, pull_request]
3+
on: [ push, pull_request ]
44

55
jobs:
66
build:
77
runs-on: ubuntu-latest
88

9-
strategy:
10-
matrix:
11-
node-version: [16.x, 18.x]
12-
139
steps:
1410
- uses: actions/checkout@v3
1511
- uses: pnpm/action-setup@v2
1612
with:
1713
version: 8
18-
- name: Use Node.js ${{ matrix.node-version }}
14+
- name: Setup Node.js
1915
uses: actions/setup-node@v3
2016
with:
21-
node-version: ${{ matrix.node-version }}
17+
node-version: 20
2218
cache: 'pnpm'
2319
- name: Install dependencies
2420
run: pnpm install
@@ -29,4 +25,4 @@ jobs:
2925
env:
3026
CI: true
3127
- name: Build
32-
run: yarn build
28+
run: pnpm build

0 commit comments

Comments
 (0)