diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 822af08e..5537740e 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -3,6 +3,10 @@ name: "Install dependencies" runs: using: "composite" steps: + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: "https://npm.pkg.github.com" - name: Create .env.test.local file shell: bash run: cp .env.test.local.example .env.test.local diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index b0379c6b..bb342b55 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -5,8 +5,8 @@ runs: steps: - uses: actions/setup-node@v4 with: - node-version: 18 - registry-url: 'https://npm.pkg.github.com' + node-version: 20 + registry-url: "https://npm.pkg.github.com" - name: Create .env.test.local file shell: bash diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b5506f0d..6adf6afa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,6 +33,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Use Node.js 20.x + uses: actions/setup-node@v4 + with: + node-version: 20 - name: Install dependencies uses: ./.github/actions/install - name: Run build @@ -174,6 +178,11 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Use Node.js 20.x + uses: actions/setup-node@v4 + with: + node-version: 20 + - name: Restore dependencies from cache uses: ./.github/actions/install diff --git a/package.json b/package.json index 62356dec..83fa173e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@charmverse/core", - "version": "0.126.6", - "description": "Core API for Charmverse", + "version": "0.126.7-rc-feat-redeploy-p.2", + "description": "Core package for Charmverse", "type": "commonjs", "types": "./dist/cjs/index.d.ts", "main": "./dist/cjs/index.js",