Skip to content

Commit

Permalink
add mac/windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Jan 30, 2025
1 parent 64e9f13 commit 4c7a044
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/npm-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,24 @@ on:
schedule:
- cron: "0 4 * * *"
jobs:
build:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npx --yes genaiscript --help
windows:
runs-on: windows-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npx --yes genaiscript --help
macos:
runs-on: macos-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npx --yes genaiscript --help

0 comments on commit 4c7a044

Please sign in to comment.