Skip to content

Commit 67b9f4e

Browse files
committed
windows initial commit
..
1 parent c90e04e commit 67b9f4e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/windows.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: windows test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Use Node.js 22.x
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 22.x
20+
cache: "pnpm"
21+
22+
- name: Install pnpm
23+
uses: pnpm/action-setup@v4
24+
with:
25+
version: 9
26+
run_install: false
27+
28+
- name: Install dependencies
29+
run: pnpm i && pnpm build && cd examples/node-cjs && pnpm i
30+
31+
- name: kysely -v
32+
working-directory: examples/node-cjs
33+
run: kysely -v

0 commit comments

Comments
 (0)