diff options
Diffstat (limited to '.github')
-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 ab43fa5b..d9fc31ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,11 +48,11 @@ jobs: with: distribution: "temurin" java-version: 17 - - name: Setup Node.JS 18 - uses: actions/setup-node@v3 + - name: Setup Node.JS 20 + uses: actions/setup-node@v4 with: - node-version: "18" - - run: npm install + node-version: "20" + - run: npm ci - name: Run tests (H2) run: ./mvnw -Pdefault clean package - name: Run tests (PostgreSQL) |