From e7dc70272979e0802d7537b41e31daa107822e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20K=C3=B6nig?= Date: Wed, 23 Oct 2024 18:10:16 +0200 Subject: [PATCH 1/2] ci: downgrade nodejs for publishing --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c10c0d7c..c87e1bee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: current + node-version: 22 - run: bash .ci/runChecks.sh publish-npm: @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: current + node-version: 22 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm run build:ci --workspaces --if-present From 81fcbdb4c7cacd8f9f07e3b9319bb0de88507558 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20K=C3=B6nig?= Date: Wed, 23 Oct 2024 18:10:22 +0200 Subject: [PATCH 2/2] ci: downgrade nodejs for testing --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e8db7907..4daafe72 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: current + node-version: 22 - run: bash .ci/runChecks.sh test: @@ -27,7 +27,7 @@ jobs: run: npm run start:backbone - uses: actions/setup-node@v4 with: - node-version: current + node-version: 22 - run: npm ci - run: npm run build:ci --workspaces --if-present - name: Start MongoDB @@ -54,7 +54,7 @@ jobs: run: npm run start:backbone - uses: actions/setup-node@v4 with: - node-version: current + node-version: 22 - run: npm ci - run: npm run build:ci --workspaces --if-present - uses: js-soft/ferretdb-github-action@1.1.1