diff options
author | Vitaly Takmazov | 2024-12-02 01:26:33 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-12-02 01:29:43 +0300 |
commit | 44fe5c264b391ae74a65bdf8ad5a49876419c6de (patch) | |
tree | ea20f6a4ae188cf4876e9b1bc6a378ecd0ff40e9 /.github/workflows | |
parent | b3220e5b098f31d9406c46cb7f55b634b7040f81 (diff) |
CI: upgrade to Node 22
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 |