diff options
author | Vitaly Takmazov | 2024-01-02 21:08:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-01-02 21:08:12 +0300 |
commit | 52735340a2c139f9e8034594642a598d30d3d613 (patch) | |
tree | 5547aaff9b429fde138ff3e899ce46f6d187ea4a /.github/workflows | |
parent | 91ede633d40776fd1df9de77d978747887cb1aae (diff) |
npm: back to Node 18
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9fc31ca..4b3381b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,10 +48,10 @@ jobs: with: distribution: "temurin" java-version: 17 - - name: Setup Node.JS 20 - uses: actions/setup-node@v4 + - name: Setup Node.JS 18 + uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "18" - run: npm ci - name: Run tests (H2) run: ./mvnw -Pdefault clean package @@ -69,11 +69,11 @@ jobs: runs-on: self-hosted timeout-minutes: 15 steps: - - uses: actions/checkout@v4 - - name: Setup Node.JS 20 - uses: actions/setup-node@v4 + - uses: actions/checkout@v3 + - name: Setup Node.JS 18 + uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "18" cache: "npm" - run: npm ci - run: npm run vnext:test |