1 parent bdb301a commit 53d4d91Copy full SHA for 53d4d91
1 file changed
.github/workflows/ci.yml
@@ -16,22 +16,10 @@ concurrency:
16
17
jobs:
18
test:
19
- name: ${{ matrix.os }} / Node ${{ matrix.node }}
20
- runs-on: ${{ matrix.os }}
+ name: Ubuntu / Node 20
+ runs-on: ubuntu-latest
21
timeout-minutes: 15
22
23
- strategy:
24
- fail-fast: false
25
- matrix:
26
- os:
27
- - ubuntu-latest
28
- - windows-latest
29
- - macos-latest
30
- node:
31
- - 18
32
- - 20
33
- - 22
34
-
35
steps:
36
- name: Checkout repository
37
uses: actions/checkout@v4
@@ -45,7 +33,7 @@ jobs:
45
- name: Set up Node.js
46
uses: actions/setup-node@v4
47
with:
48
- node-version: ${{ matrix.node }}
+ node-version: 20
49
cache: pnpm
50
38
51
39
- name: Install dependencies
0 commit comments