Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Node 22 #351

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Changes from all 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: 22.x
- os: windows-latest
target-folder: drop
node-version: 18.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