Skip to content

Commit 9af138f

Browse files
committed
Test Node on oldest available windows runner
1 parent b009b72 commit 9af138f

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
push:
3+
branches:
4+
- tmp/windows-node-min-version
5+
6+
jobs:
7+
test-windows-node:
8+
runs-on: windows-2022 # Oldest windows version Github will run
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: 20.18.1
14+
15+
- name: Install and build packages
16+
run: |
17+
pnpm ci
18+
pnpm build:packages
19+
20+
- name: Run Node tests
21+
run: pnpm run --filter ./packages/node test

0 commit comments

Comments
 (0)