Skip to content
Draft
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@ jobs:
include:
- os: ubuntu-latest
target-folder: drop-linux
node-version: 18.x
- os: windows-latest
target-folder: drop
node-version: 22.x

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20"
node-version: ${{ matrix.node-version }}

- name: npm ci
run: npm ci
Expand All @@ -32,5 +34,9 @@ jobs:
- name: prettier
run: npm run prettier

- uses: actions/setup-dotnet@v4
with:
dotnet-version: "6"

- name: test
run: npm test
Loading