We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e363d48 commit 17f8e7bCopy full SHA for 17f8e7b
.github/workflows/test.yml
@@ -13,7 +13,10 @@ on:
13
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
jobs:
15
test:
16
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
17
+ strategy:
18
+ matrix:
19
+ os: [ubuntu-latest, windows-latest]
20
21
# Steps represent a sequence of tasks that will be executed as part of the job
22
steps:
@@ -26,7 +29,7 @@ jobs:
26
29
- name: Setup Node.js
27
30
uses: actions/setup-node@v4
28
31
with:
- node-version: 20
32
+ node-version: 22
33
cache: "pnpm"
34
35
- name: Install Dependencies
0 commit comments