diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29f26da..bdb7fef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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