Skip to content

Commit 4c7a044

Browse files
committed
add mac/windows tests
1 parent 64e9f13 commit 4c7a044

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/npm-check.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,24 @@ on:
44
schedule:
55
- cron: "0 4 * * *"
66
jobs:
7-
build:
7+
ubuntu:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/setup-node@v4
1111
with:
1212
node-version: "20"
1313
- run: npx --yes genaiscript --help
14+
windows:
15+
runs-on: windows-latest
16+
steps:
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: "20"
20+
- run: npx --yes genaiscript --help
21+
macos:
22+
runs-on: macos-latest
23+
steps:
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version: "20"
27+
- run: npx --yes genaiscript --help

0 commit comments

Comments
 (0)