We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b009b72 commit 9af138fCopy full SHA for 9af138f
1 file changed
.github/workflows/test-windows-node.yaml
@@ -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