Skip to content

Commit

Permalink
windows & node CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bwireman committed Dec 31, 2024
1 parent aa3f48c commit 7f07565
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- run: gleam test --target erlang
- run: gleam run --target erlang -- --outdated

windows:
windows-erlang:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -47,6 +47,22 @@ jobs:
rebar3-version: ${{ env.rebar }}
- run: gleam run --target erlang -- --outdated

windows-node:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ env.otp }}
gleam-version: ${{ env.gleam }}
rebar3-version: ${{ env.rebar }}
- uses: actions/setup-node@v4
with:
node-version: 23.x
cache: "npm"
- run: yarn install
- run: gleam run --target javascript --runtime nodejs -- --outdated

node:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 7f07565

Please sign in to comment.