diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e948dbdf4..03642c6ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,10 +49,10 @@ jobs: with: distribution: "temurin" java-version: 17 - - name: Setup Node.JS 18 + - name: Setup Node.JS 22 uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "22" - run: npm ci - name: Run tests (H2) run: ./mvnw -Pdefault clean package @@ -73,10 +73,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v4 - - name: Setup Node.JS 18 + - name: Setup Node.JS 22 uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "22" - run: npm ci - run: npm run test - run: npm run vnext:lint |