From 1b703d0f45edeffeecb26e9f883fc699f559d51d Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Wed, 24 Apr 2024 14:15:12 +0100 Subject: [PATCH] problem: unmaintained NodeJs version --- .github/workflows/prebuild.yaml | 2 +- .github/workflows/publish-dev.yaml | 5 +---- .github/workflows/publish.yaml | 5 +---- .github/workflows/test.yaml | 4 ++-- 4 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/prebuild.yaml b/.github/workflows/prebuild.yaml index 9e776e2..1e8e254 100644 --- a/.github/workflows/prebuild.yaml +++ b/.github/workflows/prebuild.yaml @@ -24,7 +24,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.x" - name: Install Rust uses: actions-rs/toolchain@v1 diff --git a/.github/workflows/publish-dev.yaml b/.github/workflows/publish-dev.yaml index e2e9ad2..6a30f50 100644 --- a/.github/workflows/publish-dev.yaml +++ b/.github/workflows/publish-dev.yaml @@ -27,7 +27,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.x" always-auth: true - name: Configure NPM @@ -36,9 +36,6 @@ jobs: - name: Instal JS dependencies run: yarn install - - name: Configure Node.js Path - run: npm config set scripts-prepend-node-path true - - name: Pack - core run: yarn workspace @emeraldpay/emerald-vault-core pack diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index b092b56..edf8329 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -17,7 +17,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.x" always-auth: true - name: Configure NPM @@ -36,9 +36,6 @@ jobs: - name: Install JS dependencies run: yarn install - - name: Configure Node.js Path - run: npm config set scripts-prepend-node-path true - - name: Publish to NPM - core run: npm publish --access=public working-directory: packages/core diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cf779e3..d15ecf6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.x" - name: Install Rust uses: actions-rs/toolchain@v1 @@ -83,7 +83,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: "16.x" + node-version: "18.x" - run: yarn install - run: yarn workspace @emeraldpay/emerald-vault-core run build:ts - name: Test